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