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 & { iconClassName?: string; }; export const IconButton = forwardRef(function IconButton( { icon, spin, className, iconClassName, ...props }: Props, ref, ) { return ( ); });