@guruhotel/aura-icons
Version:
🎨 Icon library designed by the Guruhotel team for Aura UI
32 lines • 1.51 kB
JavaScript
import React, { forwardRef, memo } from "react";
import { AccessibleIcon } from "../accessible-icon";
import { StyledSvg, StyledPath } from "../styles";
import { jsx as _jsx } from "react/jsx-runtime";
const StyledCreditCardSolid = ({
label,
color = "#000000",
className = "",
css = {},
viewBox = "0 0 24 24"
}, ref) => {
return /*#__PURE__*/_jsx(AccessibleIcon, {
label: label,
children: /*#__PURE__*/_jsx(StyledSvg, {
className: className,
css: css,
viewBox: viewBox,
xmlns: "http://www.w3.org/2000/svg",
xmlnsXlink: "http://www.w3.org/1999/xlink",
ref: ref,
children: /*#__PURE__*/_jsx(StyledPath, {
css: {
fill: `${color}`
},
d: "M21.3333 2.99927C22.8042 2.99927 24 4.19302 24 5.66593V6.99927H0V5.66593C0 4.19302 1.19375 2.99927 2.66667 2.99927H21.3333ZM24 18.9993C24 20.4701 22.8042 21.6659 21.3333 21.6659H2.66667C1.19375 21.6659 0 20.4701 0 18.9993V10.9993H24V18.9993ZM4.66667 16.3326C4.3 16.3326 4 16.6326 4 16.9993C4 17.3659 4.3 17.6659 4.66667 17.6659H7.33333C7.7 17.6659 8 17.3659 8 16.9993C8 16.6326 7.7 16.3326 7.33333 16.3326H4.66667ZM10 17.6659H15.3333C15.7 17.6659 16 17.3659 16 16.9993C16 16.6326 15.7 16.3326 15.3333 16.3326H10C9.63333 16.3326 9.33333 16.6326 9.33333 16.9993C9.33333 17.3659 9.63333 17.6659 10 17.6659Z"
})
})
});
};
const ForwardRef = /*#__PURE__*/forwardRef(StyledCreditCardSolid);
const CreditCardSolid = /*#__PURE__*/memo(ForwardRef);
export default CreditCardSolid;