@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.32 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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M15.743 2.03a1 1 0 0 1 .247.098c1.447.38 2.613 1.57 3.42 3.022C20.412 6.954 21 9.377 21 12s-.588 5.046-1.59 6.85c-.807 1.451-1.973 2.641-3.42 3.022a1 1 0 0 1-.248.098c-3.668.917-5.837.646-7.48.04l-.344-.136a11 11 0 0 1-.33-.143c-1.397-.633-2.538-1.974-3.322-3.638C3.473 16.41 3 14.309 3 12s.473-4.41 1.266-6.093C5.05 4.243 6.19 2.902 7.587 2.27q.162-.074.33-.143l.345-.135c1.643-.607 3.812-.878 7.48.039Zm-7.33 2.06c-.817.371-1.676 1.263-2.338 2.67C5.42 8.148 5 9.955 5 12s.42 3.852 1.075 5.24c.662 1.407 1.52 2.299 2.338 2.67.81.367 1.822.702 3.436.65a7.9 7.9 0 0 1-1.259-1.71C9.588 17.046 9 14.622 9 12c0-2.623.588-5.046 1.59-6.85a7.9 7.9 0 0 1 1.26-1.71c-1.615-.052-2.627.283-3.437.65M15 4c-.853 0-1.835.634-2.661 2.122C11.53 7.576 11 9.652 11 12s.53 4.424 1.339 5.878C13.165 19.366 14.147 20 15 20s1.835-.634 2.661-2.122C18.47 16.424 19 14.348 19 12s-.53-4.424-1.339-5.878C16.835 4.634 15.853 4 15 4m0 4c.997 0 1.63.782 1.955 1.431.355.71.545 1.619.545 2.569s-.19 1.86-.545 2.569c-.324.649-.958 1.43-1.955 1.43s-1.63-.781-1.955-1.43c-.355-.71-.545-1.62-.545-2.57s.19-1.859.545-2.568C13.37 8.782 14.003 8 15 8m0 2.06c-.043.05-.1.133-.166.266-.189.377-.334.967-.334 1.674s.145 1.297.334 1.674c.066.133.123.216.166.266.043-.05.1-.133.166-.266.189-.377.334-.967.334-1.674s-.145-1.297-.334-1.674A1.3 1.3 0 0 0 15 10.06"/>
</G>
</Svg>);
});
Icon.displayName = 'TyreLine';
/**
* MingCute Icon: Tyre Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const TyreLine = Icon;