@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
15 lines (14 loc) • 836 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="M15.502 20.005A6.52 6.52 0 0 1 12 23.507a6.52 6.52 0 0 1-3.502-3.502h2.26c.326.488.747.912 1.242 1.243.495-.33.916-.755 1.242-1.243zM18 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-.73 2.195L16 15.565v-6.56c0-2.318-1.57-4.43-4-5.421-2.43.99-4 3.103-4 5.42v6.561l-1.27 1.44zm-5.27-6a2 2 0 1 1 0-4 2 2 0 0 1 0 4"/>
</Svg>);
});
Icon.displayName = 'Rocket2Line';
/**
* Remix Icon: Rocket 2 Line
* @see {@link https://remixicon.com/icon/rocket-2-line Remix Icon Docs}
*/
export const Rocket2Line = Icon;