UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.25 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="M0 0h24v24H0z"/> <Path fill={color} d="m3.99 10.746 2.678 1.804c1.464.986.487 3.268-1.237 2.89l-.108-.024a7.504 7.504 0 0 0 13.175.335 1.5 1.5 0 0 1 2.599 1.498c-2.317 4.019-7.119 6.152-11.815 4.893a10.5 10.5 0 0 1-7.784-10.06c-.01-1.314 1.45-2.04 2.492-1.337M12 6a1 1 0 0 1 .993.883L13 7v1h2a1 1 0 0 1 .117 1.993L15 10h-5a.5.5 0 0 0-.09.992L10 11h4a2.5 2.5 0 0 1 .164 4.995L14 16h-1v1a1 1 0 0 1-1.993.117L11 17v-1H9a1 1 0 0 1-.117-1.993L9 14h5a.5.5 0 0 0 .09-.992L14 13h-4a2.5 2.5 0 0 1-.164-4.995L10 8h1V7a1 1 0 0 1 1-1m2.718-4.142a10.5 10.5 0 0 1 7.784 10.06c.01 1.314-1.449 2.04-2.492 1.337l-2.678-1.805c-1.463-.986-.487-3.268 1.237-2.89l.109.024A7.504 7.504 0 0 0 5.504 8.25a1.5 1.5 0 1 1-2.6-1.498C5.22 2.732 10.022.6 14.718 1.858"/> </G> </Svg>); }); Icon.displayName = 'ExchangeDollarFill'; /** * MingCute Icon: Exchange Dollar Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const ExchangeDollarFill = Icon;