@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.58 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M9.655 3.4A12.26 12.26 0 0 1 12 4.444 12.26 12.26 0 0 1 14.345 3.4c2.044-.646 4.08-.531 5.433.822 1.353 1.353 1.468 3.39.822 5.433A12.266 12.266 0 0 1 19.556 12c.456.803.805 1.59 1.044 2.345.646 2.043.531 4.08-.822 5.433-1.352 1.353-3.39 1.468-5.433.822A12.26 12.26 0 0 1 12 19.556 12.26 12.26 0 0 1 9.655 20.6c-2.043.645-4.08.531-5.433-.822-1.353-1.353-1.467-3.39-.822-5.433.239-.756.588-1.542 1.044-2.345A12.26 12.26 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.334a22.768 22.768 0 0 1-2.334 2.046c.359.164.706.299 1.039.404 1.698.536 2.816.27 3.416-.33.6-.599.866-1.718.33-3.415a9.097 9.097 0 0 0-.404-1.04Zm-12.58 0a9.118 9.118 0 0 0-.403 1.039c-.536 1.698-.27 2.816.33 3.416.599.6 1.718.865 3.415.329.334-.105.68-.24 1.04-.404a22.769 22.769 0 0 1-2.334-2.046 22.772 22.772 0 0 1-2.047-2.334ZM12 6.8a19.75 19.75 0 0 0-2.828 2.372A19.75 19.75 0 0 0 6.8 12a19.754 19.754 0 0 0 2.37 2.828c.963.963 1.916 1.75 2.83 2.372a19.75 19.75 0 0 0 2.828-2.372A19.75 19.75 0 0 0 17.199 12a19.744 19.744 0 0 0-2.37-2.828A19.754 19.754 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.416.105.333.24.68.404 1.04.59-.78 1.273-1.561 2.047-2.335a22.772 22.772 0 0 1 2.333-2.046 9.113 9.113 0 0 0-1.039-.404c-1.697-.536-2.816-.27-3.416.329m9.312-.329c-.333.105-.68.24-1.039.404.778.59 1.56 1.273 2.334 2.046a22.77 22.77 0 0 1 2.047 2.334c.164-.359.298-.706.403-1.039.537-1.698.271-2.816-.329-3.416-.6-.6-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 = memo(Icon);