@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 1.81 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const ShoeLine = /* @__PURE__ */ memo(function ShoeLine(_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="M18.026 3.902c-.152-.263-.448-.492-.716-.492-.48 0-1.097.48-1.47.771-.559.435-1.211.848-1.911.992-.518.105-1.136.026-1.682-.117-.09-.023-.864-.294-.864-.294-1.072-.495-1.548.912-1.971 1.605-.29.473-.655 1.037-1.07 1.606a1 1 0 0 0-1.04 1.314q-.462.565-.877 1.086A1 1 0 0 0 5.29 11.84c-1.072 1.433-1.81 2.598-2.236 3.635-.36.88-.514 1.703-.447 2.542.067.827.342 1.598.727 2.376.522 1.055 1.802 1.344 2.739.803l14.722-8.5a2 2 0 0 0 .732-2.732zm.268 4.464-1.419-2.457c-.764.546-1.617 1.033-2.545 1.223-.954.195-1.919.034-2.587-.14-.411-.107-.404.057-.625.418-.252.413-.564.899-.92 1.406l.111.055a1 1 0 1 1-.886 1.793l-.473-.234q-.357.436-.68.84a1 1 0 0 1-.945 1.76l-.312-.154c-1.086 1.437-1.752 2.487-2.11 3.358-.265.647-.34 1.154-.303 1.623.037.466.192.964.498 1.592l14.696-8.485-.5-.866-4.33 2.5a1 1 0 0 1-1-1.732z"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Shoe Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { ShoeLine };