import { ReactNode } from 'react'; import { Button } from '@/components/ui/button'; interface ButtonIconProps { icon: ReactNode; children?: ReactNode; } type Props = ButtonIconProps & React.ComponentPropsWithoutRef; export default function ButtonWithIcon({ icon, children, ...rest }: Props) { return ( ); }