@risemaxi/sigil
Version:
Icons and Signs for the Rise Design System
18 lines (17 loc) • 1.57 kB
JavaScript
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.593 23.258l-.011.002-.071.035-.02.004-.014-.004-.071-.035q-.016-.005-.024.005l-.004.01-.017.428.005.02.01.013.104.074.015.004.012-.004.104-.074.012-.016.004-.017-.017-.427q-.004-.016-.017-.018m.265-.113-.013.002-.185.093-.01.01-.003.011.018.43.005.012.008.007.201.093q.019.005.029-.008l.004-.014-.034-.614q-.005-.018-.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.004-.011.017-.43-.003-.012-.01-.01z"/>
<Path fill={color} d="M16.567 4.792A4.5 4.5 0 0 0 12.646 2.5l-.858.005A4.5 4.5 0 0 0 7.5 6.998V10.5H6a1.5 1.5 0 0 0 0 3h1.5V16c-.014.486-.103.972-.488 1.309-.2.174-.45.233-.683.35-1.603.801-.704 3.231 1.035 2.796.294-.082.57-.208.867-.281 1.252-.282 2.465-.012 3.66.364 1.819.538 3.472.514 4.874.131 1.049-.286 2.207-1.078 1.577-2.34-.507-1.014-1.49-.843-2.366-.554-1.313.358-2.603.085-3.868-.313a11 11 0 0 0-1.717-.353A6.3 6.3 0 0 0 10.5 16v-2.5H13a1.5 1.5 0 0 0 0-3h-2.5V6.998c.039-.814.654-1.498 1.5-1.498l.787.007a1.5 1.5 0 0 1 1.2.822l.742 1.468a1.5 1.5 0 0 0 2.613-1.468z"/>
</G>
</Svg>);
});
Icon.displayName = 'CurrencyPound2Fill';
/**
* MingCute Icon: Currency Pound 2 Fill
* @see {@link https://www.mingcute.com MingCute Icon Docs}
*/
export const CurrencyPound2Fill = Icon;