@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 682 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="M18.5858 5H14V3H22V11H20V6.41421L16.4633 9.95088C17.4274 11.2127 18 12.7895 18 14.5C18 18.6421 14.6421 22 10.5 22C6.35786 22 3 18.6421 3 14.5C3 10.3579 6.35786 7 10.5 7C12.2105 7 13.7873 7.57264 15.0491 8.53666L18.5858 5Z"/>
</Svg>);
};
Icon.displayName = 'MenFill';
/**
* Remix Icon: Men Fill
* @see {@link https://remixicon.com/icon/men-fill Remix Icon Docs}
*/
export const MenFill = memo(Icon);