UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.71 kB
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="M9 2c.243 0 .465.086.638.23l.063.057.166.175.158.156.146.135.276.24c.035.03.07.06.108.09l.24.19.13.1.286.207c.1.07.206.142.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.622c-.045.308-.084.612-.117.908l-.06.583-.046.559-.036.532-.024.5-.017.464-.009.424-.003.552.006.438c.085.052.174.097.264.134a.862.862 0 0 0 .473.068c.11-.02.268-.075.47-.25l.104-.097c.83-.83 1.78-1.056 2.63-.918a3.372 3.372 0 0 1 1.784.918 1 1 0 0 1-1.414 1.414 1.373 1.373 0 0 0-.691-.358c-.202-.032-.466-.016-.786.257l-.109.101c-.498.498-1.053.8-1.645.903a2.854 2.854 0 0 1-1.558-.181 4.165 4.165 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-.319a24.747 24.747 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-.405c.049-.067.097-.133.144-.2l.273-.39.252-.376.23-.356.206-.331.182-.304.226-.39.242-.443.06-.115a.995.995 0 0 1 .309-.37A.996.996 0 0 1 9 2m.424 9.744c-.941.16-1.801.213-2.574.193a11.475 11.475 0 0 1-1.522-.138c2.02 2.698 4.549 4.522 6.555 5.665a29.99 29.99 0 0 1-1.623-3.402 32.706 32.706 0 0 1-.836-2.318m6.08-2.27c-1.482.84-2.862 1.42-4.129 1.806a30.7 30.7 0 0 0 .74 2.033 26.7 26.7 0 0 0 1.902 3.839c.108-2.115.46-5.052 1.488-7.678ZM8.203 6.228a21.119 21.119 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-.13a29.648 29.648 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.872-.32-.086-.628-.178-.925-.277a15.156 15.156 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 = memo(Icon);