/// import { IconProps } from './Icon'; export interface ClearIconProps extends IconProps { thin?: boolean; } export default function ClearIcon({ fill, thin, ...iconProps }: ClearIconProps): JSX.Element;