import React from 'react'; import { cn } from '../../utils/classNames'; type IconButtonProps = React.ButtonHTMLAttributes & { label: string; }; const IconButton = React.forwardRef(({ className, label, type = 'button', ...props }, ref) => (