@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.58 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="M10.762 6.025a40 40 0 0 1-1.084 3.24c.362.334.7.699 1.048 1.047l.38-.76a1 1 0 0 1 1.601-.26l1.019 1.02.38-.76a1 1 0 0 1 .216-.287 40 40 0 0 1-1.084-3.24C13.226 5.98 13.157 6 13.123 6l-.88.22a1 1 0 0 1-.486 0l-.88-.22c-.036 0-.102-.023-.115.025M3.788 17.29c-.148.281-.276.52-.38.709H3a1 1 0 1 0 0 2h18a1 1 0 1 0 0-2h-.409q-.155-.286-.38-.709a95 95 0 0 1-1.586-3.139c-1.235-2.559-2.654-5.808-3.462-8.67A2.025 2.025 0 0 0 13.22 4c-.423 0-.81.117-1.219.22-.41-.103-.796-.22-1.22-.22-.921 0-1.701.624-1.943 1.481-.808 2.863-2.228 6.112-3.462 8.671a95 95 0 0 1-1.587 3.14"/>
</G>
</Svg>);
});
Icon.displayName = 'MountainFill';
/**
* MingCute Icon: Mountain Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const MountainFill = Icon;