@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 543 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="M11 15.934A7.501 7.501 0 0 1 12 1a7.5 7.5 0 0 1 1 14.934V18h5v2h-5v4h-2v-4H6v-2h5z"/>
</Svg>);
});
Icon.displayName = 'WomenFill';
/**
* Remix Icon: Women Fill
* @see {@link https://remixicon.com/icon/women-fill Remix Icon Docs}
*/
export const WomenFill = Icon;