UNPKG

styled-icons

Version:

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

18 lines (17 loc) 1.12 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var tslib_1 = require("tslib"); var React = tslib_1.__importStar(require("react")); var StyledIconBase_1 = require("../../StyledIconBase"); exports.CreditCardAlt = React.forwardRef(function (props, ref) { var attrs = { "fill": "currentColor", "xmlns": "http://www.w3.org/2000/svg", }; return (React.createElement(StyledIconBase_1.StyledIconBase, tslib_1.__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" }))); }); exports.CreditCardAlt.displayName = 'CreditCardAlt'; exports.CreditCardAltDimensions = { height: 24, width: 24 };