UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 2.06 kB
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"> <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="M15.541 4.16a1 1 0 0 1 .445 1.008l-.718 4.225a2 2 0 0 0 .089 1.01l1.81 5.05c.88.174 1.66.4 2.267.677.366.167.724.376 1.004.646.281.271.562.683.562 1.224 0 .848-.663 1.37-1.12 1.64-.523.309-1.214.553-1.98.744-1.548.387-3.634.616-5.9.616s-4.352-.229-5.9-.616c-.766-.191-1.457-.435-1.98-.744C3.663 19.37 3 18.848 3 18c0-.54.28-.953.562-1.224.28-.27.638-.48 1.004-.646.608-.277 1.387-.503 2.268-.678l2.46-6.866a4 4 0 0 1 1.524-1.964l3.622-2.45a1 1 0 0 1 1.101-.013Zm3.237 2.271c.17-.353.227-.399.338-.208l.067.128.039.08a5.64 5.64 0 0 0 1.907 2.219l.226.147c.263.16.308.206.078.358l-.078.049a5.64 5.64 0 0 0-2.01 2.124l-.229.449c-.11.191-.168.145-.338-.208a5.64 5.64 0 0 0-1.907-2.219l-.357-.23c-.139-.1-.13-.153.053-.274l.078-.05a5.64 5.64 0 0 0 2.133-2.365M7.598 3.665l.069.123c.314.58.788 1.076 1.376 1.445l.226.131c.185.101.213.138.115.205l-.115.067a4 4 0 0 0-1.477 1.363l-.201.344c-.077.116-.118.106-.188-.008l-.07-.122a3.9 3.9 0 0 0-1.376-1.445l-.226-.132c-.185-.101-.213-.138-.115-.205l.115-.067a4 4 0 0 0 1.477-1.363l.125-.213c.132-.243.174-.269.264-.123Z"/> </G> </Svg>); }); Icon.displayName = 'MagicHatFill'; /** * MingCute Icon: Magic Hat Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const MagicHatFill = Icon;