UNPKG

styled-icons

Version:

Icons from packs like Font Awesome, Material, Octicons, Feather, Icomoon, and Boxicons available as Styled Components

16 lines (15 loc) 997 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var CreditCardAlt = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase, __assign({ iconAttrs: attrs, iconVerticalAlign: "middle", iconViewBox: "0 0 24 24" }, props, { ref: ref }), React.createElement("circle", { cx: 15.5, cy: 13.5, r: 2.5, key: "k0" }), React.createElement("path", { d: "M12 13.5c0-.815.396-1.532 1-1.988A2.47 2.47 0 0011.5 11a2.5 2.5 0 100 5 2.47 2.47 0 001.5-.512 2.486 2.486 0 01-1-1.988z", key: "k1" }), React.createElement("path", { d: "M20 4H4c-1.103 0-2 .897-2 2v12c0 1.103.897 2 2 2h16c1.103 0 2-.897 2-2V6c0-1.103-.897-2-2-2zM4 18V6h16l.002 12H4z", key: "k2" }))); }); CreditCardAlt.displayName = 'CreditCardAlt'; export var CreditCardAltDimensions = { height: 24, width: 24 };