@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.67 kB
JavaScript
import { memo } from 'react';
import { Svg, G, Path } from 'react-native-svg';
const Icon = (props) => {
const { color = 'black', size = 24, ...otherProps } = props;
return (<Svg viewBox="0 0 24 24" height={size} width={size} {...otherProps}>
<G fill="none" fillRule="evenodd">
<Path d="M24 0v24H0V0zM12.594 23.258l-.012.002-.071.035-.02.004-.014-.004-.071-.036c-.01-.003-.019 0-.024.006l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427c-.002-.01-.009-.017-.016-.018m.264-.113-.014.002-.184.093-.01.01-.003.011.018.43.005.012.008.008.201.092c.012.004.023 0 .029-.008l.004-.014-.034-.614c-.003-.012-.01-.02-.02-.022m-.715.002a.023.023 0 0 0-.027.006l-.006.014-.034.614c0 .012.007.02.017.024l.015-.002.201-.093.01-.008.003-.011.018-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M10.762 6.025a39.726 39.726 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-.76a.997.997 0 0 1 .216-.287 39.778 39.778 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-.409c-.103-.19-.23-.428-.38-.709a95.039 95.039 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.671a94.72 94.72 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 = memo(Icon);