@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
17 lines (16 loc) • 1.69 kB
JavaScript
import { memo } from 'react';
import Svg, { G, Path } from 'react-native-svg';
const HoodLine = /* @__PURE__ */ memo(function HoodLine(_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="M5.973 4.395a2 2 0 0 1 2.161.241l4.798 3.926c.475-.28.963-.608 1.5-.968 1.646-1.104 3.327-2.16 5.225-2.779a10 10 0 0 1 1.154-.286l.377 1.964a8 8 0 0 0-.912.224c-1.682.548-3.172 1.494-4.631 2.473-.848.569-1.709 1.146-2.554 1.56-.64.312-1.464.524-2.266.7-.818.18-1.684.336-2.525.525-.833.188-1.568.394-2.142.654-.589.267-.866.528-.975.741-.358.7-.144 1.462.268 2.146.165.271.542.484 1.109.484h2.61a3.001 3.001 0 0 1 5.66 0H21v2h-6.17a3.001 3.001 0 0 1-5.66 0H6.56c-1 0-2.175-.38-2.82-1.45-.537-.889-1.173-2.458-.338-4.09.413-.808 1.181-1.313 1.931-1.653.765-.346 1.663-.588 2.527-.783.978-.22 1.968-.388 2.943-.62l-3.935-3.22-1.42.71a1 1 0 1 1-.895-1.788l1.42-.71ZM11.995 18h.01a1 1 0 1 0-.01 0"/>
</G>
</Svg>);
});
/**
* MingCute Icon: Hood Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export { HoodLine };