type CloseIconProps = { width?: number; height?: number; }; function CloseIcon({ width = 24, height = 24 }: CloseIconProps) { return ( ); } export default CloseIcon;