@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.02 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="M14.612 20.926c-.96-.318-8.532-3.026-12.495-10.455a1 1 0 0 1 .386-1.34C5.704 7.305 8.083 2.6 8.105 2.554a1 1 0 0 1 1.654-.204c.025.03 2.845 3.198 8.325 3.655a1.001 1.001 0 0 1 .706 1.61c-2.764 3.553-2.846 9.985-2.808 11.824q.128.078.264.134a.86.86 0 0 0 .473.068c.127-.022.322-.095.574-.347.83-.83 1.78-1.056 2.63-.917.789.128 1.42.554 1.784.917a1 1 0 0 1-1.414 1.414 1.38 1.38 0 0 0-.691-.357c-.225-.037-.526-.012-.895.357-.498.498-1.053.8-1.645.903a2.85 2.85 0 0 1-1.559-.181 4.2 4.2 0 0 1-.891-.503ZM5.109 9.722a9.3 9.3 0 0 0 1.79.216 11.4 11.4 0 0 0 1.973-.13 30 30 0 0 1-.67-3.58c.423-.604.776-1.164 1.049-1.621.242.2.527.421.857.652.134 1.424.386 2.8.713 4.099 1.233-.378 2.612-.971 4.126-1.872q.642.172 1.347.299c-.3.54-.561 1.107-.789 1.69-1.483.84-2.863 1.42-4.13 1.805a31 31 0 0 0 .74 2.033 27 27 0 0 0 1.902 3.84c-.026.509-.038.97-.042 1.369-.57-.252-1.29-.6-2.093-1.058a30 30 0 0 1-1.622-3.402 33 33 0 0 1-.837-2.318c-.94.16-1.8.213-2.573.193a11.5 11.5 0 0 1-1.522-.138 18 18 0 0 1-.992-1.471q.396-.286.773-.606"/>
</G>
</Svg>);
});
Icon.displayName = 'KiteFill';
/**
* MingCute Icon: Kite Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const KiteFill = Icon;