@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 666 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="M15.001 17C10.8588 17 7.50098 13.6421 7.50098 9.5C7.50098 5.35786 10.8588 2 15.001 2C19.1431 2 22.501 5.35786 22.501 9.5C22.501 13.6421 19.1431 17 15.001 17ZM2.00098 2H6.00098V22H2.00098V2Z"/>
</Svg>);
};
Icon.displayName = 'PatreonFill';
/**
* Remix Icon: Patreon Fill
* @see {@link https://remixicon.com/icon/patreon-fill Remix Icon Docs}
*/
export const PatreonFill = memo(Icon);