@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.87 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">
<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="m17.068 2.001.116.013a1 1 0 0 1 .822 1.15c-.43 2.58.088 5.416 1.428 8.43 1.174 2.643.82 5.424-.455 8.064a14 14 0 0 1-.632 1.165l-.232.364a7 7 0 0 1-.306.427 1 1 0 0 1-1.65-1.124l.072-.104c.361-.503.678-1.04.947-1.598.79-1.636 1.143-3.297.879-4.883-1.91.469-3.041 1.307-3.753 2.35-.813 1.19-1.175 2.786-1.305 4.79a1.004 1.004 0 0 1-1 .955c-.53 0-.975-.425-.998-.956-.13-2.003-.492-3.598-1.305-4.79-.708-1.036-1.829-1.87-3.717-2.34-.261 1.583.092 3.242.88 4.874.215.445.458.882.734 1.294l.213.304a1 1 0 0 1-1.578 1.228 7 7 0 0 1-.306-.427l-.232-.364c-.2-.328-.417-.72-.632-1.165-1.274-2.64-1.63-5.421-.455-8.064 1.34-3.014 1.858-5.85 1.428-8.43a1 1 0 1 1 1.972-.328c.482 2.89-.04 5.971-1.4 9.174 2.197.575 3.73 1.632 4.745 3.117q.377.556.652 1.167.275-.611.652-1.167c1.019-1.493 2.564-2.553 4.778-3.126-1.356-3.2-1.878-6.278-1.396-9.165A1 1 0 0 1 17.068 2ZM12 8a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/>
</G>
</Svg>);
});
Icon.displayName = 'BodyLine';
/**
* MingCute Icon: Body Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const BodyLine = Icon;