UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

18 lines (17 loc) 1.69 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" fillRule="evenodd"> <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="M7.527 6.595a1.5 1.5 0 0 1 .971 1.325l.014-.106a1.5 1.5 0 0 1 2.976.372l-.071.574a3 3 0 0 1 2.907-2.26h.176c.72 0 1.445.27 1.928.888.47.602.56 1.344.4 1.98a1.5 1.5 0 0 1-2.567.638l-.05.4a.2.2 0 0 0 .121.211 3.2 3.2 0 0 1 1.96 2.999l2.303-6.143a1.5 1.5 0 0 1 2.893.34l1 8a1.5 1.5 0 1 1-2.976.373l-.086-.686h-.636l-.386 1.027a1.5 1.5 0 0 1-2.863-.18 3 3 0 0 1-2.364 1.153H13c-.51 0-1.37-.087-1.946-.82-.377-.482-.453-1.025-.448-1.436l-.118.942a1.5 1.5 0 1 1-2.976-.372l.92-7.37-.028.083-3 8A1.5 1.5 0 0 1 2.5 16V9.415A1.5 1.5 0 0 1 3 6.5h1a1.5 1.5 0 0 1 1.483 1.273l.113-.3a1.5 1.5 0 0 1 1.93-.878Zm3.164 7.969a1.5 1.5 0 0 1 2.55-.57l.05-.401a.2.2 0 0 0-.122-.21 3.2 3.2 0 0 1-1.96-2.963z"/> </G> </Svg>); }); Icon.displayName = 'VisaFill'; /** * MingCute Icon: Visa Fill * @see {@link https://www.mingcute.com MingCute Icon Docs} */ export const VisaFill = Icon;