import React, { FC, MouseEventHandler } from 'react'; export const CloseIcon: FC<{ fill: string; onClick?: MouseEventHandler }> = ({ fill, onClick, }) => { return ( ); };