UNPKG

@elevyg/react-native-ionicons

Version:
8 lines (6 loc) 902 B
import * as React from "react"; import Svg, { Rect, Path, Circle } from "react-native-svg"; function SvgCashOutline(props) { return <Svg xmlns="http://www.w3.org/2000/svg" width="1em" height="1em" viewBox="0 0 512 512" {...props}><Rect x={32} y={80} width={448} height={256} rx={16} ry={16} transform="rotate(180 256 208)" fill="none" stroke={props.fill} strokeLinejoin="round" strokeWidth={32} /><Path fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} d="M64 384h384M96 432h320" /><Circle cx={256} cy={208} r={80} fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /><Path d="M480 160a80 80 0 01-80-80M32 160a80 80 0 0080-80M480 256a80 80 0 00-80 80M32 256a80 80 0 0180 80" fill="none" stroke={props.fill} strokeLinecap="round" strokeLinejoin="round" strokeWidth={32} /></Svg>; } export default SvgCashOutline;