UNPKG

styled-icons

Version:

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

14 lines (13 loc) 826 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var CreditCard = 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("path", { d: "M17 7H6c-1.654 0-3 1.346-3 3v7c0 1.654 1.346 3 3 3h11c1.654 0 3-1.346 3-3v-7c0-1.654-1.346-3-3-3zm1 10a1 1 0 01-1 1H6a1 1 0 01-1-1v-4h13v4zm0-6H5v-1a1 1 0 011-1h11a1 1 0 011 1v1zm-4 5h2a.5.5 0 000-1h-2a.5.5 0 000 1z", key: "k0" }))); }); CreditCard.displayName = 'CreditCard'; export var CreditCardDimensions = { height: 24, width: 24 };