UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.36 kB
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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035c-.01-.004-.019-.001-.024.005l-.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-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093c.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M4.222 4.222c1.353-1.353 3.39-1.467 5.433-.822A12.26 12.26 0 0 1 12 4.444c.803-.456 1.59-.805 2.345-1.044 2.044-.646 4.08-.531 5.433.822 1.353 1.353 1.468 3.39.822 5.433A12.26 12.26 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.258 12.258 0 0 1 12 19.556c-.803.456-1.59.805-2.345 1.044-2.043.645-4.08.53-5.433-.822-1.353-1.353-1.467-3.39-.822-5.433.239-.756.588-1.542 1.044-2.345A12.258 12.258 0 0 1 3.4 9.655c-.645-2.043-.53-4.08.822-5.433m1.489 9.687a9.108 9.108 0 0 0-.404 1.039c-.536 1.697-.27 2.816.33 3.416.599.6 1.718.865 3.415.329.333-.105.68-.24 1.04-.404a22.771 22.771 0 0 1-2.334-2.046 22.782 22.782 0 0 1-2.047-2.334m12.579 0a22.78 22.78 0 0 1-2.047 2.334 22.772 22.772 0 0 1-2.334 2.047c.359.163.706.298 1.039.403 1.698.536 2.816.27 3.416-.329.6-.6.866-1.718.33-3.416a9.1 9.1 0 0 0-.404-1.04ZM12 10.5a1.5 1.5 0 1 0 0 3 1.5 1.5 0 0 0 0-3m2.948-5.193a9.11 9.11 0 0 0-1.04.404 22.7 22.7 0 0 1 2.335 2.046 22.787 22.787 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-.329m-9.312.33c-.6.599-.865 1.717-.329 3.415.105.333.24.68.404 1.04.59-.78 1.273-1.561 2.047-2.335a22.777 22.777 0 0 1 2.333-2.046 9.11 9.11 0 0 0-1.039-.404c-1.697-.536-2.816-.27-3.416.33" fillRule="nonzero"/> </G> </Svg>); }; Icon.displayName = 'ScienceFill'; /** * MingCute Icon: Science Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const ScienceFill = memo(Icon);