react-icons/hi#HiDotsHorizontal JavaScript Examples

The following examples show how to use react-icons/hi#HiDotsHorizontal. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: LineageMenu.jsx    From covince with MIT License 6 votes vote down vote up
MenuButton = React.forwardRef(
  (props, ref) => (
    <button
      {...props}
      ref={ref}
      className='py-0 px-1 md:px-0.5 border border-transparent font-medium text-gray-500 dark:text-gray-300 rounded focus:primary-ring'
    >
      <HiDotsHorizontal className='w-5 h-5' />
    </button>
  )
)