UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.35 kB
import { memo } from 'react'; import Svg, { G, Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg viewBox="0 0 24 24" width={size} height={size} {...props}> <G fill="none" fillRule="evenodd"> <Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036q-.016-.004-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092q.019.005.029-.008l.004-.014-.034-.614q-.005-.019-.02-.022m-.715.002a.02.02 0 0 0-.027.006l-.006.014-.034.614q.001.018.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M15.277 19.208a1 1 0 0 1 1.095.753l.021.115.1.8a1 1 0 0 1-1.963.363l-.021-.115-.1-.8a1 1 0 0 1 .867-1.116Zm-9.79-.982a1 1 0 0 1 .439 1.254l-.051.105-.5.9a1 1 0 0 1-1.799-.865l.05-.105.5-.9a1 1 0 0 1 1.36-.39ZM15.97 16.76l.021.115.1.8a1 1 0 0 1-1.963.363l-.021-.115-.1-.8a1 1 0 0 1 1.963-.363m-8.486-2.135a1 1 0 0 1 .44 1.254l-.05.105-.5.9a1 1 0 0 1-1.8-.865l.051-.106.5-.9a1 1 0 0 1 1.36-.388ZM13.55 3.238l.248.06.065.017a5.38 5.38 0 0 1 3.753 3.623c1.299.716 2.392 1.556 3.13 2.463.754.926 1.249 2.073.932 3.255-.227.848-.815 1.478-1.53 1.915-.711.434-1.596.712-2.558.864-1.929.304-4.362.133-6.865-.537-2.504-.671-4.696-1.74-6.214-2.968-.758-.612-1.386-1.295-1.784-2.026-.401-.737-.595-1.577-.368-2.424.322-1.2 1.347-1.95 2.485-2.372 1.082-.402 2.43-.579 3.892-.55a5.38 5.38 0 0 1 4.814-1.32M7.487 6.59c-.767.061-1.425.198-1.947.392-.85.316-1.167.71-1.249 1.014-.059.22-.038.527.193.95.234.43.656.92 1.284 1.428 1.254 1.014 3.176 1.975 5.474 2.59 2.298.616 4.443.745 6.036.494.798-.125 1.409-.34 1.827-.594.41-.252.582-.507.641-.726.08-.3.007-.79-.551-1.476-.356-.437-.866-.894-1.514-1.34-.39 1.262-1.484 2.27-3.044 2.178A14.4 14.4 0 0 1 9.035 10c-1.397-.7-1.842-2.12-1.548-3.41m2.21-.12c-.537.718-.302 1.472.234 1.74a12.4 12.4 0 0 0 4.824 1.293c.598.036 1.179-.5 1.073-1.391a3.38 3.38 0 0 0-2.294-2.81l-.254-.073a3.38 3.38 0 0 0-3.582 1.24Z"/> </G> </Svg>); }); Icon.displayName = 'Ufo2Line'; /** * MingCute Icon: Ufo 2 Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const Ufo2Line = Icon;