@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.82 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.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="M7.494 7.83a5 5 0 0 1 9.012 0c.499-.372 1.047-.754 1.6-.968a2.65 2.65 0 0 1 1.247-.187c.466.05.891.24 1.271.544.874.7 1.129 1.934 1.094 3.05-.036 1.18-.396 2.533-1.09 3.809C19.226 16.66 16.41 19 12 19s-7.225-2.34-8.629-4.922c-.693-1.276-1.053-2.628-1.09-3.81-.034-1.115.22-2.35 1.094-3.049.38-.304.806-.493 1.272-.544.456-.049.877.044 1.246.187.553.214 1.102.596 1.6.969m1.663 1.21a3.001 3.001 0 0 1 5.686 0c-.865.557-1.772.96-2.843.96s-1.978-.403-2.843-.96M7.045 10c1.188.893 2.82 2 4.955 2 2.134 0 3.767-1.107 4.954-2 .602-.453 1.164-.997 1.877-1.274.208-.081.366-.088.544.055.126.101.372.516.344 1.426-.026.843-.291 1.891-.848 2.916C17.775 15.14 15.59 17 12 17s-5.775-1.86-6.871-3.877c-.557-1.025-.822-2.073-.848-2.916-.028-.91.217-1.325.344-1.426.178-.143.335-.136.544-.055.713.277 1.275.821 1.876 1.274"/>
</G>
</Svg>);
});
Icon.displayName = 'YuanbaoLine';
/**
* MingCute Icon: Yuanbao Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const YuanbaoLine = Icon;