import type { ReactNode } from 'react' type Props = { label: string onClick?: () => void disabled?: boolean children: ReactNode className?: string } export function IconButton({ label, onClick, disabled, children, className = '' }: Props) { return ( {label} ) }