UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

15 lines (14 loc) 903 B
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="M2.88 18.05A35.9 35.9 0 0 1 11.41 1.728a.8.8 0 0 1 1.178 0q.25.27.412.456a35.9 35.9 0 0 1 8.119 15.864c-2.141.451-4.34.747-6.584.875L12.447 23.1a.5.5 0 0 1-.894 0l-2.089-4.177a44 44 0 0 1-6.584-.875m6.697-1.123 1.158.066L12 19.523l1.265-2.53 1.157-.066a42 42 0 0 0 4.227-.455 33.9 33.9 0 0 0-6.65-12.387 33.9 33.9 0 0 0-6.648 12.387 42 42 0 0 0 4.226.455M12 14.995a3 3 0 1 1 0-6 3 3 0 0 1 0 6m0-2a1 1 0 1 0 0-2 1 1 0 0 0 0 2"/> </Svg>); }); Icon.displayName = 'SpaceShipLine'; /** * Remix Icon: Space Ship Line * @see {@link https://remixicon.com/icon/space-ship-line Remix Icon Docs} */ export const SpaceShipLine = Icon;