@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 2.66 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">
<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="M15.541 4.16a1 1 0 0 1 .458.876l-.013.132-.718 4.225a2 2 0 0 0 .03.813l.059.197 1.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.616-2.266 0-4.352-.229-5.9-.616-.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.532-.243 1.195-.446 1.942-.61l.326-.068 2.46-6.866a4 4 0 0 1 1.318-1.815l.206-.149 3.622-2.45a1 1 0 0 1 1.101-.013Zm-.118 12.356C14.44 16.83 13.247 17 12 17c-1.247 0-2.44-.17-3.423-.484l-.055.154a1 1 0 0 1-.778.65c-1.037.171-1.836.396-2.348.63-.1.045.054.129.282.216l.21.073.326.102.372.103C7.933 18.781 9.848 19 12 19c2.009 0 3.81-.19 5.137-.49l.32-.077.329-.092.216-.066.218-.072c.28-.1.497-.202.384-.253-.512-.234-1.31-.459-2.348-.63a1 1 0 0 1-.778-.65zM13.622 7.14l-1.683 1.14a2 2 0 0 0-.693.814l-.069.168-1.925 5.37c.72.221 1.67.37 2.748.37.959 0 1.816-.118 2.5-.298l.248-.071-1.274-3.555a4 4 0 0 1-.213-1.765l.035-.254zm5.6-.709a5.642 5.642 0 0 0 1.907 2.219l.226.147c.263.16.308.206.078.358l-.078.049a5.638 5.638 0 0 0-2.01 2.124l-.229.449c-.11.191-.168.145-.338-.208a5.642 5.642 0 0 0-1.907-2.219l-.226-.146c-.286-.176-.29-.222-.072-.362l.072-.045a5.64 5.64 0 0 0 2.133-2.366c.17-.353.227-.399.338-.208l.067.128zM7.597 3.665l.07.123c.314.58.788 1.076 1.376 1.445l.226.131c.192.105.231.136.07.232l-.07.04a4.003 4.003 0 0 0-1.477 1.363l-.201.344c-.077.116-.118.106-.188-.008l-.07-.122a3.919 3.919 0 0 0-1.376-1.445l-.34-.199c-.071-.048-.077-.08-.007-.132l.12-.073a4.003 4.003 0 0 0 1.478-1.363l.125-.213c.132-.243.174-.269.264-.123"/>
</G>
</Svg>);
};
Icon.displayName = 'MagicHatLine';
/**
* MingCute Icon: Magic Hat Line
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const MagicHatLine = memo(Icon);