@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.03 kB
JavaScript
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="M16.507 2.138a1 1 0 0 1 .455 1.137l-1.815 6.35c.65.572 1.191 1.293 1.638 2.043.97 1.629 1.628 3.489 2.011 5.352l.155.81c.098.534.183 1.138-.056 1.617-.308.616-1.052.859-1.778.982l-.36.053-.66.074c-1.16.13-2.637.194-4.097.194-1.298 0-2.61-.05-3.699-.153l-1.059-.112c-.824-.1-1.768-.301-2.136-1.038-.209-.417-.167-.948-.087-1.437l.095-.524c.366-2.017 1.05-4.053 2.101-5.818.447-.75.988-1.47 1.638-2.043l-1.814-6.35a1 1 0 0 1 1.667-.983 7.4 7.4 0 0 0 1.099.876C10.505 3.635 11.3 4 12 4s1.495-.365 2.195-.832c.291-.194.575-.406.84-.637l.258-.238a1 1 0 0 1 1.214-.155M12 10.5c-.638 0-1.168.148-1.445.332-.58.386-1.127 1.03-1.622 1.86-.929 1.56-1.528 3.368-1.851 5.15-.093.51.084.627.425.672l.184.019.32.024.117.012c1.06.12 2.457.181 3.872.181 1.258 0 2.502-.049 3.507-.144l.483-.049.415-.033c.397-.038.614-.13.514-.681-.324-1.783-.923-3.592-1.852-5.151-.494-.83-1.043-1.474-1.622-1.86-.276-.184-.807-.332-1.445-.332m2.266-5.072C13.6 5.748 12.82 6 12 6s-1.6-.252-2.266-.572l.922 3.229A5.7 5.7 0 0 1 12 8.5a5.7 5.7 0 0 1 1.344.157z"/>
</G>
</Svg>);
});
Icon.displayName = 'SkirtLine';
/**
* MingCute Icon: Skirt Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const SkirtLine = Icon;