import { forwardRef } from 'react'; import type { IconProps } from './Icon'; import { Icon } from './Icon'; import type { ButtonProps } from './Button'; import { Button } from './Button'; import classnames from 'classnames'; type Props = Omit & ButtonProps; export const IconButton = forwardRef(function IconButton( { icon, spin, ...props }: Props, ref, ) { return ( ); });