UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.83 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.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="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.624a8.5 8.5 0 0 0-.372-.135l-.342-.108-.3-.083-.342-.081a6.05 6.05 0 0 0-.079-.016Zm12.1 0-.177.037-.244.059a9.06 9.06 0 0 0-.144.038l-.323.096a8.676 8.676 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 = memo(Icon);