UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.54 kB
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="M9 2c.243 0 .465.086.638.23l.063.057.166.175.158.156.146.135.276.24q.052.045.108.09l.24.19.13.1.286.207q.15.105.317.215l.348.221.379.223c1.38.782 3.327 1.556 5.829 1.765a1.001 1.001 0 0 1 .706 1.61c-1.32 1.695-2.028 4.047-2.404 6.242l-.098.622q-.068.463-.117.908l-.06.583-.046.559-.036.532-.024.5-.017.464-.009.424-.003.552.006.438q.128.078.264.134a.86.86 0 0 0 .473.068c.11-.02.268-.075.47-.25l.104-.097c.83-.83 1.78-1.056 2.63-.918a3.37 3.37 0 0 1 1.784.918 1 1 0 0 1-1.414 1.414 1.37 1.37 0 0 0-.691-.358c-.202-.032-.466-.016-.786.257l-.109.101c-.498.498-1.053.8-1.645.903a2.85 2.85 0 0 1-1.558-.181 4.2 4.2 0 0 1-.892-.503l-.355-.125-.581-.225-.444-.186-.331-.147-.357-.165-.381-.184-.403-.203-.422-.223-.44-.244-.455-.264-.469-.286-.239-.15-.485-.319a25 25 0 0 1-.743-.52l-.502-.375c-2.018-1.548-4.112-3.662-5.69-6.478l-.209-.384a1 1 0 0 1 .397-1.317c1.342-.765 2.539-2.037 3.478-3.258l.304-.405q.074-.1.144-.2l.273-.39.252-.376.23-.356.206-.331.182-.304.226-.39.242-.443.06-.115a1 1 0 0 1 .309-.37A1 1 0 0 1 9 2m.424 9.744c-.941.16-1.801.213-2.574.193a11.5 11.5 0 0 1-1.522-.138c2.02 2.698 4.549 4.522 6.555 5.665a30 30 0 0 1-1.623-3.402 33 33 0 0 1-.836-2.318m6.08-2.27c-1.482.84-2.862 1.42-4.129 1.806a31 31 0 0 0 .74 2.033 27 27 0 0 0 1.902 3.839c.108-2.115.46-5.052 1.488-7.678ZM8.203 6.228a21 21 0 0 1-1.967 2.424 15 15 0 0 1-1.126 1.07c.49.11 1.089.198 1.791.216.582.014 1.24-.02 1.972-.13a30 30 0 0 1-.67-3.58m1.906-.97c.134 1.425.386 2.801.713 4.1 1.233-.378 2.612-.971 4.126-1.872q-.48-.129-.925-.277a15.2 15.2 0 0 1-3.914-1.95Z"/> </G> </Svg>); }); Icon.displayName = 'KiteLine'; /** * MingCute Icon: Kite Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const KiteLine = Icon;