@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 722 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 4c6.075 0 11 4.925 11 11v5h-3v-5a8 8 0 0 0-7.75-7.996L12 7a8 8 0 0 0-7.996 7.75L4 15v5H1v-5C1 8.925 5.925 4 12 4m0 4a7 7 0 0 1 7 7v5h-3v-5a4 4 0 0 0-3.8-3.995L12 11a4 4 0 0 0-3.995 3.8L8 15v5H5v-5a7 7 0 0 1 7-7m0 4a3 3 0 0 1 3 3v5H9v-5a3 3 0 0 1 3-3"/>
</Svg>);
});
Icon.displayName = 'RainbowFill';
/**
* Remix Icon: Rainbow Fill
* @see {@link https://remixicon.com/icon/rainbow-fill Remix Icon Docs}
*/
export const RainbowFill = Icon;