UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.71 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.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="M13 2a3 3 0 0 1 .64 5.932l-.171.032 1.436 2.297 1.724-.69a1 1 0 0 1 .848 1.808l-.106.05-1.723.689a2 2 0 0 1-2.343-.657l-.096-.14-.163-.26-.606 2.424a2 2 0 0 1-.256.595l-.09.13 1.653 1.228a2 2 0 0 1 .766 1.202l.029.182.353 3.178H15a1 1 0 0 1 .117 1.993L15 22h-.91a1.1 1.1 0 0 1-1.074-.861l-.02-.117-.442-3.979-3.15-2.34a1 1 0 0 1-.154-.14 2 2 0 0 1-.723-1.891l.033-.157.794-3.177-1.57.47-.835 2.508a1 1 0 0 1-1.928-.52l.03-.112.836-2.508a2 2 0 0 1 1.17-1.23l.153-.053 3.437-1.031A3 3 0 0 1 13 2M8.2 15.4a1 1 0 0 1 1.669 1.095L9.8 16.6l-1.216 1.622a1.5 1.5 0 0 1-1.906.424l-.126-.076-1.93-1.287a1 1 0 0 1-1.412-1.396l.083-.094.494-.494a1.01 1.01 0 0 1 1.162-.191l.113.064 2.206 1.471zM13 4a1 1 0 1 0 0 2 1 1 0 0 0 0-2"/> </G> </Svg>); }); Icon.displayName = 'RunLine'; /** * MingCute Icon: Run Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const RunLine = Icon;