@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 805 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="m16 2 5 5v13.993A1 1 0 0 1 20.007 22H3.993A1 1 0 0 1 3 21.008V2.992C3 2.444 3.447 2 3.999 2zm0 6.667H8V7.333h3.333V6h1.334l-.001 1.333h2.333L15 4H5v16h14V8l-3-.001zm-6.667 6v1.999H16V18H8v-3.333zM12 14.333a1 1 0 1 1 0 2 1 1 0 0 1 0-2M12 9a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5m0 1.333a1.167 1.167 0 1 0 0 2.334 1.167 1.167 0 0 0 0-2.334"/>
</Svg>);
});
Icon.displayName = 'FileHwpLine';
/**
* Remix Icon: File Hwp Line
* @see {@link https://remixicon.com/icon/file-hwp-line Remix Icon Docs}
*/
export const FileHwpLine = Icon;