react-native-remix-icon
Version:
Remix Icon for React Native
16 lines (15 loc) • 509 B
JavaScript
import * as React from "react";
import Svg, { Path } from "react-native-svg";
const SvgNoCreditCardFill = props => (
<Svg
xmlns="http://www.w3.org/2000/svg"
fill="currentColor"
viewBox="0 0 24 24"
width={24}
height={24}
{...props}
>
<Path d="m19.586 21 1.607 1.607 1.414-1.415-19.8-19.799-1.413 1.415.726.726A1 1 0 0 0 2.005 4v3h3.58l4 4h-7.58v9a1 1 0 0 0 1 1zm2.419-10v6.762L15.243 11zm0-4H11.243l-4-4h13.762a1 1 0 0 1 1 1z" />
</Svg>
);
export default SvgNoCreditCardFill;