@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 832 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 10.202 9.303 12 12 13.798 14.697 12zm4.5.596L19.197 9 13 4.869v3.596zm3.5.07L18.303 12 20 13.132zm-3.5 2.334L13 15.535v3.596L19.197 15zM11 8.465V4.869L4.803 9 7.5 10.798zM4.803 15 11 19.131v-3.596l-3.5-2.333zm.894-3L4 10.868v2.264zM2 9a1 1 0 0 1 .445-.832l9-6a1 1 0 0 1 1.11 0l9 6A1 1 0 0 1 22 9v6a1 1 0 0 1-.445.832l-9 6a1 1 0 0 1-1.11 0l-9-6A1 1 0 0 1 2 15z"/>
</Svg>);
});
Icon.displayName = 'CodepenFill';
/**
* Remix Icon: Codepen Fill
* @see {@link https://remixicon.com/icon/codepen-fill Remix Icon Docs}
*/
export const CodepenFill = Icon;