UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.66 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/> <Path fill={color} d="M2 11a9 9 0 1 1 16.032 5.618l3.675 3.675a1 1 0 0 1-1.414 1.414l-3.675-3.675A9 9 0 0 1 2 11m9-7a7 7 0 0 0-1.061 13.92 6.7 6.7 0 0 1-4.872-7.215 5.563 5.563 0 0 1 6.15-4.906 4.65 4.65 0 0 1 4.102 5.141 3.92 3.92 0 0 1-4.331 3.458 3.333 3.333 0 0 1-2.95-3.686 2.87 2.87 0 0 1 3.173-2.529c.98.11 1.71.936 1.783 1.87C13.08 11.158 12.249 12 11 12a1 1 0 0 1-.942-.663l-.034-.119.002.018c.022.198.09.39.196.56l.087.122c.222.277.544.454.9.493a1.92 1.92 0 0 0 2.123-1.695 2.65 2.65 0 0 0-2.338-2.93 3.564 3.564 0 0 0-3.94 3.144 4.7 4.7 0 0 0 4.146 5.203c1.526.172 3.341-.422 4.692-1.5 1.234-.984 1.897-2.24 2.084-3.905q.006-.047.015-.092A7 7 0 0 0 11 4"/> </G> </Svg>); }); Icon.displayName = 'LollipopLine'; /** * MingCute Icon: Lollipop Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const LollipopLine = Icon;