import { KnownIconType } from "@charcoal-ui/icons"; import { ButtonHTMLAttributes } from "react"; type Props = ButtonHTMLAttributes & { iconName: keyof KnownIconType; isProcessing: boolean; label?: string; }; export const IconButton = ({ iconName, isProcessing, label, ...rest }: Props) => { return ( ); };