UNPKG

styled-icons

Version:

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

15 lines (14 loc) 998 B
import { __assign } from "tslib"; import * as React from 'react'; import { StyledIconBase } from '../../StyledIconBase'; export var Mastercard = 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", { fill: "none", d: "M0 0h24v24H0z", key: "k0" }), React.createElement("path", { d: "M12 6.654a6.786 6.786 0 012.596 5.344A6.786 6.786 0 0112 17.34a6.786 6.786 0 01-2.596-5.343A6.786 6.786 0 0112 6.654zm-.87-.582A7.783 7.783 0 008.4 12a7.783 7.783 0 002.728 5.926 6.798 6.798 0 11.003-11.854zm1.742 11.854A7.783 7.783 0 0015.6 12a7.783 7.783 0 00-2.73-5.928 6.798 6.798 0 11.003 11.854z", key: "k1" }))); }); Mastercard.displayName = 'Mastercard'; export var MastercardDimensions = { height: 24, width: 24 };