UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.74 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="m3.606 3.447.23.462-2.15 3.01a1 1 0 0 0 .107 1.288l1.5 1.5a1 1 0 0 0 1.154.187l1.254-.626.692.922-2.07 6.626-.17-.13a5 5 0 0 1-.43-.376 1 1 0 0 0-1.45 1.377l.636.565c.397.315.98.725 1.748 1.132C6.2 20.2 8.483 21 11.5 21s5.301-.8 6.843-1.616a11.4 11.4 0 0 0 1.748-1.132c.154-.123.655-.582.636-.565a1 1 0 0 0-1.275-1.524l-1.03-5.151c.523.489 1.088 1.245 1.684 2.435a1 1 0 1 0 1.788-.894c-1.056-2.113-2.186-3.317-3.447-3.947C17.39 8.077 16.34 8.01 15.45 8h-3.692a11 11 0 0 0-.339-.894c-.409-.954-1.097-2.198-2.212-3.313-1.159-1.159-2.353-1.623-3.293-1.78a5 5 0 0 0-1.141-.057c-.113.008-.45.057-.516.074a1 1 0 0 0-.651 1.417m10.72 15.268L13.306 16h-2.614l-1.079 2.876c.585.079 1.213.124 1.886.124 1.049 0 1.99-.11 2.825-.285Z"/> </G> </Svg>); }); Icon.displayName = 'ToyHorseFill'; /** * MingCute Icon: Toy Horse Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const ToyHorseFill = Icon;