Literal UI

import { IconButton } from '@literal-ui/core'import { IconButton } from '@literal-ui/core'

Icon: IconTypeIcon: IconType

<IconButton Icon={RiGithubFill} />
<IconButton Icon={RiGithubFill} />

disabled?: booleandisabled?: boolean

<IconButton Icon={RiGithubFill} disabled />
<IconButton Icon={RiGithubFill} disabled />

as?: React.ElementTypeas?: React.ElementType

<IconButton
  Icon={RiGithubFill}
  as="a"
  href="https://github.com"
  target="_blank"
  rel="noopener"
/>
<IconButton
  Icon={RiGithubFill}
  as="a"
  href="https://github.com"
  target="_blank"
  rel="noopener"
/>