import { forwardRef } from 'react'; import { Button, type ButtonProps } from './Button'; export interface IconButtonProps extends ButtonProps {} export const IconButton = forwardRef( function IconButton(props, ref) { return