@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 656 B
JavaScript
import { memo } from 'react';
import { Svg, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" fill={color} height={size} width={size} {...otherProps}>
<Path d="M20 7V20C20 21.1046 19.1046 22 18 22H6C4.89543 22 4 21.1046 4 20V7H2V5H22V7H20ZM6 7V20H18V7H6ZM11 9H13V11H11V9ZM11 12H13V14H11V12ZM11 15H13V17H11V15ZM7 2H17V4H7V2Z"/>
</Svg>);
};
Icon.displayName = 'DeleteBin3Line';
/**
* Remix Icon: Delete Bin 3 Line
* @see {@link https://remixicon.com/icon/delete-bin-3-line Remix Icon Docs}
*/
export const DeleteBin3Line = memo(Icon);