@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.01 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.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="M9.84 20.275c-.419.972-1.585 1.533-2.668.979-2.046-1.049-3.454-2.248-4.315-3.58-.871-1.349-1.14-2.766-1.019-4.15C2.074 10.841 3.784 8.29 5.2 6.4 7.084 3.888 9.48 2.5 12 2.5s4.916 1.388 6.8 3.9c1.401 1.868 3.24 4.434 3.54 7.125.155 1.397-.1 2.832-1.008 4.194-.894 1.342-2.373 2.54-4.538 3.585-1.083.523-2.238-.047-2.643-1.023-.722.454-1.478.719-2.15.719-.676 0-1.437-.268-2.162-.725ZM6.8 7.6c1.616-2.154 3.47-3.1 5.2-3.1s3.584.946 5.2 3.1c1.454 1.938 2.922 4.082 3.152 6.147.109.98-.065 1.933-.684 2.863-.626.938-1.751 1.92-3.668 2.857v-.901c.866-1.15 1.5-2.692 1.5-4.566q0-.575-.061-1.113a1 1 0 0 0-.984-.887 4.5 4.5 0 0 1-4.425-3.977 1.01 1.01 0 0 0-1.268-.847C8.368 7.86 6.5 10.405 6.5 14c0 1.874.634 3.416 1.5 4.566v.864c-1.787-.928-2.856-1.904-3.463-2.843-.607-.938-.793-1.902-.706-2.887.18-2.055 1.54-4.196 2.97-6.1ZM8.5 14c0-2.222.85-3.674 1.843-4.412a6.51 6.51 0 0 0 5.157 4.336c.012 1.408-.468 2.789-1.424 3.832C13.244 18.663 12.366 19 12 19s-1.243-.337-2.075-1.244C9.138 16.897 8.5 15.633 8.5 14"/>
</G>
</Svg>);
});
Icon.displayName = 'Hair2Line';
/**
* MingCute Icon: Hair 2 Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const Hair2Line = Icon;