@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 684 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="M8.498 20.005h7.004A6.52 6.52 0 0 1 12 23.507a6.52 6.52 0 0 1-3.502-3.502M18 14.81l2 2.268v1.927H4v-1.927l2-2.268V9.005c0-3.483 2.504-6.447 6-7.545 3.496 1.098 6 4.062 6 7.545zm-6-3.805a2 2 0 1 0 0-4 2 2 0 0 0 0 4"/>
</Svg>);
});
Icon.displayName = 'Rocket2Fill';
/**
* Remix Icon: Rocket 2 Fill
* @see {@link https://remixicon.com/icon/rocket-2-fill Remix Icon Docs}
*/
export const Rocket2Fill = Icon;