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