Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { Icon, close } from '@wordpress/icons';
interface UnsubscribeIconProps {
className?: string;
iconSize?: number;
}
export default function UnsubscribeIcon( props: UnsubscribeIconProps ): JSX.Element {
const { className, iconSize } = props;
return <Icon className={ className } icon={ close } size={ iconSize || 20 } />;
}