@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.44 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="M12 7c-2.035 0-3.925.352-5.344.96-.707.303-1.344.69-1.818 1.17C4.36 9.614 4 10.248 4 11s.36 1.386.838 1.87c.474.48 1.11.867 1.818 1.17 1.419.608 3.309.96 5.344.96s3.925-.352 5.344-.96c.707-.303 1.344-.69 1.818-1.17.478-.484.838-1.118.838-1.87s-.36-1.386-.838-1.87c-.474-.48-1.11-.867-1.818-1.17C15.925 7.352 14.035 7 12 7m0 3c1.657 0 3 .448 3 1s-1.343 1-3 1-3-.448-3-1 1.343-1 3-1m-5.054 5.223c-.068.794-.19 1.559-.325 2.226l-.117.547-.116.49-.11.423c-.242.9.15 1.997 1.202 2.358.11.037.228.076.355.116l.407.118C9.18 21.758 10.47 22 12 22c1.53 0 2.82-.242 3.758-.499l.407-.118c.127-.04.246-.079.355-.116 1.051-.361 1.444-1.459 1.202-2.358l-.11-.423-.116-.49-.117-.547a20.017 20.017 0 0 1-.325-2.226C15.6 15.728 13.84 16 12 16c-1.84 0-3.599-.272-5.054-.777m3.062-13.55-.206-.404c-.11-.2-.165-.202-.255-.046l-.067.128-.04.08A5.643 5.643 0 0 1 7.535 3.65l-.227.146c-.257.158-.286.212-.13.323l.13.085a5.638 5.638 0 0 1 2.01 2.123l.206.404c.11.2.165.202.256.046l.066-.128.04-.08A5.643 5.643 0 0 1 11.79 4.35l.227-.146c.315-.193.288-.23 0-.408a5.639 5.639 0 0 1-2.01-2.123Zm4.153 3.23.07-.039a4.003 4.003 0 0 0 1.477-1.363l.201-.344c.077-.115.118-.106.188.008l.07.123c.314.58.788 1.076 1.376 1.444l.226.132c.192.105.231.136.07.232l-.07.04a3.96 3.96 0 0 0-1.602 1.576l-.07.123c-.07.114-.11.123-.188.008l-.075-.13a3.919 3.919 0 0 0-1.377-1.445l-.226-.132c-.192-.105-.23-.136-.07-.232Z"/>
</G>
</Svg>);
};
Icon.displayName = 'MagicHat2Fill';
/**
* MingCute Icon: Magic Hat 2 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const MagicHat2Fill = memo(Icon);