@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 718 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="M12 20V22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9998 7V14H19V8H15V4H5V20H12ZM14.4646 19.4647L18.0001 23.0002L22.9498 18.0505L21.5356 16.6362L18.0001 20.1718L15.8788 18.0505L14.4646 19.4647Z"/>
</Svg>);
};
Icon.displayName = 'FileCheckLine';
/**
* Remix Icon: File Check Line
* @see {@link https://remixicon.com/icon/file-check-line Remix Icon Docs}
*/
export const FileCheckLine = memo(Icon);