@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 782 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 16H8V8H12C14.2091 8 16 9.79086 16 12C16 14.2091 14.2091 16 12 16ZM10 10V14H12C13.1046 14 14 13.1046 14 12C14 10.8954 13.1046 10 12 10H10ZM15 4H5V20H19V8H15V4ZM3 2.9918C3 2.44405 3.44749 2 3.9985 2H16L20.9997 7L21 20.9925C21 21.5489 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5447 3 21.0082V2.9918Z"/>
</Svg>);
};
Icon.displayName = 'FilePdfLine';
/**
* Remix Icon: File Pdf Line
* @see {@link https://remixicon.com/icon/file-pdf-line Remix Icon Docs}
*/
export const FilePdfLine = memo(Icon);