@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.1 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.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.626a5.4 5.4 0 0 1-.6-.506 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.947-.96-.48-2.026-.606-3.087-.606h-3.602a11 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.78-.533-.088-1.125-.116-1.657.017a1 1 0 0 0-.651 1.417M17.674 17.47l-1.333-6.666c-.134-.668-.772-.8-1.358-.804H11c-.483 0-.882-.348-.983-.813a8 8 0 0 0-.436-1.293c-.341-.796-.903-1.802-1.788-2.687-.653-.653-1.284-.971-1.796-1.125a1 1 0 0 1-.183.5l-2.008 2.81.391.391 1.356-.677A1 1 0 0 1 6.8 7.4l1.5 2a1 1 0 0 1 .154.898L6.09 17.863c.451.21.967.414 1.548.589l1.426-3.803A1 1 0 0 1 10 14h4a1 1 0 0 1 .936.649l1.312 3.497c.55-.215 1.026-.449 1.426-.676m-3.349 1.246L13.307 16h-2.614l-1.079 2.877A14 14 0 0 0 11.5 19c1.049 0 1.99-.11 2.825-.284"/>
</G>
</Svg>);
});
Icon.displayName = 'ToyHorseLine';
/**
* MingCute Icon: Toy Horse Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const ToyHorseLine = Icon;