@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 618 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-.7zm.729-5.569a4.002 4.002 0 0 0 7.763 0l-1.941-.485a2 2 0 0 1-3.882 0z"/>
</Svg>);
});
Icon.displayName = 'User5Fill';
/**
* Remix Icon: User 5 Fill
* @see {@link https://remixicon.com/icon/user-5-fill Remix Icon Docs}
*/
export const User5Fill = Icon;