@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 691 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="M7.39 16.539a8 8 0 1 1 9.221 0l2.083 4.76a.5.5 0 0 1-.459.701H5.765a.5.5 0 0 1-.459-.7zm6.735-.693 1.332-.941a6 6 0 1 0-6.913 0l1.331.941L8.058 20h7.884zM8.119 10.97l1.94-.485a2 2 0 0 0 3.882 0l1.94.485a4.002 4.002 0 0 1-7.762 0"/>
</Svg>);
});
Icon.displayName = 'User5Line';
/**
* Remix Icon: User 5 Line
* @see {@link https://remixicon.com/icon/user-5-line Remix Icon Docs}
*/
export const User5Line = Icon;