react-code-dataset / wp-calypso /client /landing /subscriptions /components /settings /icons /unsubscribe-icon.tsx
| 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 } />; | |
| } | |