@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 660 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="M21.008 3c.548 0 .992.445.992.993v16.014a1 1 0 0 1-.992.993H2.992A.993.993 0 0 1 2 20.007V3.993A1 1 0 0 1 2.992 3zM20 5H4v14h16zm-2 10v2H6v-2zm-6-8v6H6V7zm6 4v2h-4v-2zm-8-2H8v2h2zm8-2v2h-4V7z"/>
</Svg>);
});
Icon.displayName = 'ProfileLine';
/**
* Remix Icon: Profile Line
* @see {@link https://remixicon.com/icon/profile-line Remix Icon Docs}
*/
export const ProfileLine = Icon;