@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 736 B
JavaScript
import { memo } from 'react';
import Svg, { Path } from 'react-native-svg';
const Icon = memo((_props) => {
const { color = 'black', size = 24, ...props } = _props;
return (<Svg fill={color} viewBox="0 0 24 24" width={size} height={size} {...props}>
<Path d="M19 12c1.093 0 2.117.292 3 .803V6a1 1 0 0 0-1-1h-8.586l-2-2H3a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h10.803A6 6 0 0 1 19 12m1.414 6 2.122 2.121-1.415 1.414-2.12-2.12-2.122 2.12-1.414-1.414L17.585 18l-2.12-2.121 1.414-1.415L19 16.586l2.121-2.122 1.415 1.415z"/>
</Svg>);
});
Icon.displayName = 'FolderCloseFill';
/**
* Remix Icon: Folder Close Fill
* @see {@link https://remixicon.com/icon/folder-close-fill Remix Icon Docs}
*/
export const FolderCloseFill = Icon;