UNPKG

@risemaxi/sigil

Version:

Icons and Signs for the Rise Design System

11 lines (10 loc) 831 B
import { memo } from 'react'; import Svg, { Path } from 'react-native-svg'; const Icon = memo((_props) => { const { color = 'black', size = 24, ...props } = _props; return (<Svg fill={color} viewBox="0 0 28 28" width={size} height={size} {...props}> <Path d="M24.5 23.5H3V5.75C3 4.79 3.79 4 4.75 4H20.5v4.98h2.25c.96 0 1.75.79 1.75 1.75zM4.5 22H23V10.73c0-.14-.11-.25-.25-.25H7.81v-1.5H19V5.5H4.75c-.14 0-.25.11-.25.25zm13.25-3.42c-.74 0-1.43-.29-1.95-.82-.51-.5-.8-1.19-.8-1.93s.29-1.43.82-1.95c.5-.51 1.19-.8 1.93-.8 1.52 0 2.75 1.23 2.75 2.75 0 .74-.29 1.43-.81 1.94-.51.52-1.2.81-1.94.81m0-4c-.33 0-.64.13-.87.36-.25.24-.38.55-.38.89s.13.64.36.87c.48.5 1.3.48 1.76.01h.01c.23-.24.36-.55.36-.89 0-.69-.56-1.25-1.25-1.25z"/> </Svg>); }); Icon.displayName = 'WalletInactive'; export const WalletInactive = Icon;