@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.37 kB
JavaScript
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="M9.655 3.4A12.3 12.3 0 0 1 12 4.444 12.3 12.3 0 0 1 14.345 3.4c2.044-.646 4.08-.531 5.433.822s1.468 3.39.822 5.433A12.3 12.3 0 0 1 19.556 12c.456.803.805 1.59 1.044 2.345.646 2.043.531 4.08-.822 5.433s-3.39 1.468-5.433.822A12.3 12.3 0 0 1 12 19.556 12.3 12.3 0 0 1 9.655 20.6c-2.043.645-4.08.531-5.433-.822s-1.467-3.39-.822-5.433c.239-.756.588-1.542 1.044-2.345A12.3 12.3 0 0 1 3.4 9.655c-.645-2.044-.53-4.08.822-5.433 1.353-1.353 3.39-1.468 5.433-.822m8.635 10.509c-.59.778-1.274 1.56-2.047 2.334a23 23 0 0 1-2.334 2.046q.539.246 1.039.404c1.698.536 2.816.27 3.416-.33.6-.599.866-1.718.33-3.415a9 9 0 0 0-.404-1.04Zm-12.58 0a9 9 0 0 0-.403 1.039c-.536 1.698-.27 2.816.33 3.416.599.6 1.718.865 3.415.329q.5-.158 1.04-.404a23 23 0 0 1-2.334-2.046 23 23 0 0 1-2.047-2.334ZM12 6.8a19.8 19.8 0 0 0-2.828 2.372A19.8 19.8 0 0 0 6.8 12a19.8 19.8 0 0 0 2.37 2.828c.963.963 1.916 1.75 2.83 2.372a19.8 19.8 0 0 0 2.828-2.372A19.8 19.8 0 0 0 17.199 12a19.7 19.7 0 0 0-2.37-2.828A19.8 19.8 0 0 0 12 6.8m0 3.7a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3M5.636 5.636c-.6.6-.865 1.718-.329 3.416q.158.5.404 1.04c.59-.78 1.273-1.561 2.047-2.335a23 23 0 0 1 2.333-2.046 9 9 0 0 0-1.039-.404c-1.697-.536-2.816-.27-3.416.329m9.312-.329q-.5.158-1.039.404c.778.59 1.56 1.273 2.334 2.046a23 23 0 0 1 2.047 2.334q.246-.539.403-1.039c.537-1.698.271-2.816-.329-3.416s-1.718-.865-3.416-.329"/>
</G>
</Svg>);
});
Icon.displayName = 'ScienceLine';
/**
* MingCute Icon: Science Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const ScienceLine = Icon;