UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.73 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.822 2c1.208 0 2.045 1.02 2.048 2.097l-.004.14c-.157 2.416.468 4.922 1.55 7.357 1.429 3.213.387 6.365-.509 8.176-.755 1.528-2.345 2.23-3.86 2.23h-6.09c-1.516 0-3.106-.702-3.861-2.23-.896-1.811-1.938-4.963-.51-8.176 1.019-2.292 1.633-4.647 1.571-6.93l-.02-.427C6.064 3.11 6.92 2 8.181 2zm-9.87 12.008c-.271 1.85.315 3.617.937 4.876.315.638 1.012 1.057 1.88 1.11l.188.006h2.011c-.124-1.387-.523-2.78-1.3-3.945-.497-.746-1.393-1.276-2.282-1.624a9 9 0 0 0-.372-.135l-.342-.108-.3-.083-.342-.081zm12.1 0-.177.037-.244.059-.144.038-.323.096a9 9 0 0 0-.55.193c-.888.348-1.784.877-2.282 1.624-.717 1.075-1.112 2.345-1.266 3.625l-.034.32h2.015c.953 0 1.729-.432 2.067-1.116.623-1.26 1.209-3.026.938-4.877ZM12 9a1 1 0 1 0 0 2 1 1 0 0 0 0-2"/> </G> </Svg>); }); Icon.displayName = 'BodyFill'; /** * MingCute Icon: Body Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const BodyFill = Icon;