@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.76 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="M11.98 13.594c-1.34 1.779-3.552 2.632-5.66 2.354-2.383-.314-4.546-2.05-5.294-5.248a1 1 0 0 1 1.411-1.127c2.093 1.016 4.034-.064 5.654-1.355.728-.58 1.535-.863 2.339-.768.62.073 1.146.361 1.55.761.405-.4.93-.688 1.551-.761.804-.095 1.611.188 2.34.768 1.619 1.291 3.56 2.371 5.653 1.355a1 1 0 0 1 1.41 1.127c-.747 3.198-2.91 4.934-5.293 5.248-2.108.278-4.32-.575-5.66-2.354Zm-1.347-1.579c-.84 1.428-2.48 2.157-4.051 1.95-1.093-.143-2.198-.752-2.94-2.006 2.38.209 4.408-1.15 5.696-2.177.415-.33.704-.364.857-.346.614.072.779.91.785 1.401a2.43 2.43 0 0 1-.347 1.178m2.348-1.178c.008.367.109.774.347 1.178.84 1.428 2.48 2.157 4.052 1.95 1.092-.143 2.197-.752 2.94-2.006-2.382.209-4.41-1.15-5.697-2.177-.415-.33-.703-.364-.857-.346-.614.072-.779.91-.786 1.401Z"/>
</G>
</Svg>);
});
Icon.displayName = 'BeardLine';
/**
* MingCute Icon: Beard Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const BeardLine = Icon;