import { cn } from "@/lib/utils"; type TileIconButtonProps = React.ButtonHTMLAttributes & { icon: (props: any) => JSX.Element; label: string; active?: boolean; }; export default function TileIconButton({ icon: Icon, label, active, className, ...props }: TileIconButtonProps) { return ( ); }