@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 823 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="M12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2m0 4c-2.761 0-5 2.686-5 6s2.239 6 5 6 5-2.686 5-6-2.239-6-5-6m2.325 3.472c.422.69.675 1.57.675 2.528 0 2.21-1.343 4-3 4-.441 0-.86-.127-1.237-.355zM12 8c.441 0 .86.127 1.237.355l-3.562 6.173C9.253 13.838 9 12.958 9 12c0-2.21 1.343-4 3-4"/>
</Svg>);
});
Icon.displayName = 'CreativeCommonsZeroFill';
/**
* Remix Icon: Creative Commons Zero Fill
* @see {@link https://remixicon.com/icon/creative-commons-zero-fill Remix Icon Docs}
*/
export const CreativeCommonsZeroFill = Icon;