UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.99 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="M8 2a2.75 2.75 0 0 0-2.75 2.75c0 .4.125.912.257 1.365.141.49.33 1.046.528 1.589.395 1.086.84 2.176 1.037 2.667a1 1 0 0 0 1.856 0c.197-.49.642-1.581 1.037-2.667a26 26 0 0 0 .528-1.589c.132-.453.257-.965.257-1.365A2.75 2.75 0 0 0 8 2m7.955 3.295a2.75 2.75 0 0 0-3.889 0c-.283.283-.556.733-.784 1.147-.246.446-.505.974-.75 1.497-.488 1.046-.944 2.133-1.153 2.619a1 1 0 0 0 1.313 1.313c.877-.376 1.755-.75 2.62-1.153.522-.245 1.05-.504 1.496-.75.414-.228.864-.501 1.147-.784a2.75 2.75 0 0 0 0-3.889M16.5 10.5a2.75 2.75 0 1 1 0 5.5c-.4 0-.912-.125-1.365-.257a26 26 0 0 1-1.589-.528c-1.085-.394-2.176-.84-2.667-1.037a1 1 0 0 1 0-1.857c.49-.196 1.581-.641 2.667-1.036a26 26 0 0 1 1.589-.528c.453-.132.965-.257 1.365-.257m-.545 10.705a2.75 2.75 0 0 0 0-3.89c-.283-.282-.733-.555-1.147-.783a26 26 0 0 0-1.497-.75c-1.047-.489-2.133-.945-2.619-1.153a1 1 0 0 0-1.313 1.313c.208.486.665 1.572 1.153 2.619.245.523.504 1.05.75 1.497.228.414.501.864.784 1.147a2.75 2.75 0 0 0 3.889 0"/> </G> </Svg>); }); Icon.displayName = 'LemonSqueezyFill'; /** * MingCute Icon: Lemon Squeezy Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const LemonSqueezyFill = Icon;