diff options
Diffstat (limited to 'icons-react/icons-js/credit-card.js')
-rw-r--r-- | icons-react/icons-js/credit-card.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/icons-react/icons-js/credit-card.js b/icons-react/icons-js/credit-card.js new file mode 100644 index 00000000..2ef8dc7f --- /dev/null +++ b/icons-react/icons-js/credit-card.js @@ -0,0 +1,5 @@ +import * as React from "react"; + +const IconCreditCard = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-credit-card" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><rect x={3} y={5} width={18} height={14} rx={3} /><line x1={3} y1={10} x2={21} y2={10} /><line x1={7} y1={15} x2={7.01} y2={15} /><line x1={11} y1={15} x2={13} y2={15} /></svg>; + +export default IconCreditCard;
\ No newline at end of file |