interface CloseIconProps { width?: string | number; height?: string | number; } const CloseIcon = ({ width, height }: CloseIconProps) => ( Close ); export default CloseIcon;