@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.15 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.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.001 1.001 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.824.085.052.174.097.264.134a.861.861 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.375 1.375 0 0 0-.691-.357c-.225-.037-.526-.012-.895.357-.498.498-1.053.8-1.645.903a2.853 2.853 0 0 1-1.559-.181 4.162 4.162 0 0 1-.891-.503ZM5.109 9.722a9.25 9.25 0 0 0 1.79.216 11.42 11.42 0 0 0 1.973-.13 29.65 29.65 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.872.428.114.877.215 1.347.299-.3.54-.561 1.107-.789 1.69-1.483.84-2.863 1.42-4.13 1.805a30.7 30.7 0 0 0 .74 2.033 26.699 26.699 0 0 0 1.902 3.84c-.026.509-.038.97-.042 1.369-.57-.252-1.29-.6-2.093-1.058a29.978 29.978 0 0 1-1.622-3.402 32.681 32.681 0 0 1-.837-2.318c-.94.16-1.8.213-2.573.193a11.49 11.49 0 0 1-1.522-.138 17.65 17.65 0 0 1-.992-1.471c.264-.19.522-.393.773-.606"/>
</G>
</Svg>);
};
Icon.displayName = 'KiteFill';
/**
* MingCute Icon: Kite Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const KiteFill = memo(Icon);