UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.81 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="M10 2c2.222 0 5.757 1.108 6.949 4.684.436 1.308.38 2.473.225 3.621l-.261 1.732c-.185 1.305-.319 2.85-.05 4.963H18a1 1 0 0 1 1 1v3a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-3a1 1 0 0 1 1-1h1.106c.232-1.144.9-2.718 2.564-4.356.182-.18.29-.387.335-.592-.342.217-.683.418-1.01.601l-.482.262-.453.235-.417.207-.537.252-.287.129-.119.052a1.48 1.48 0 0 1-1.64-.316l-1.477-1.477a1.5 1.5 0 0 1-.188-1.893l3.451-5.176-.74-1.48A1 1 0 0 1 7 2zm7 17H7v1h10zM10 4H8.618l.276.553a1 1 0 0 1 .004.886l-.066.116-3.545 5.318.94.94.37-.173.208-.1.456-.227c.798-.409 1.766-.96 2.628-1.604a1 1 0 0 1 1.318.084c1.205 1.205.993 3.043-.015 4.152l-.12.125c-1.084 1.067-1.61 2.047-1.859 2.786L9.167 17h5.682a19.4 19.4 0 0 1 .046-4.97l.077-.546.17-1.116c.178-1.2.244-2.047-.09-3.052C14.242 4.892 11.777 4 10 4M9 7a1 1 0 1 1 0 2 1 1 0 0 1 0-2"/> </G> </Svg>); }); Icon.displayName = 'ChessLine'; /** * MingCute Icon: Chess Line * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const ChessLine = Icon;