@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 673 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="M3 21C2.44772 21 2 20.5523 2 20V4C2 3.44772 2.44772 3 3 3H10.4142L12.4142 5H20C20.5523 5 21 5.44772 21 6V9H4V18.996L6 11H22.5L20.1894 20.2425C20.0781 20.6877 19.6781 21 19.2192 21H3Z"/>
</Svg>);
};
Icon.displayName = 'FolderOpenFill';
/**
* Remix Icon: Folder Open Fill
* @see {@link https://remixicon.com/icon/folder-open-fill Remix Icon Docs}
*/
export const FolderOpenFill = memo(Icon);