openreplay/frontend/app/components/ui/Icons/credit_card_2_back.tsx
2025-03-11 10:35:08 +01:00

18 lines
730 B
TypeScript

/* Auto-generated, do not edit */
import React from 'react';
interface Props {
size?: number | string;
width?: number | string;
height?: number | string;
fill?: string;
}
function Credit_card_2_back(props: Props) {
const { size = 14, width = size, height = size, fill = '' } = props;
return (
<svg fill="currentColor" viewBox="0 0 16 16" width={ `${ width }px` } height={ `${ height }px` } ><path d="M11 5.5a.5.5 0 0 1 .5-.5h2a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-2a.5.5 0 0 1-.5-.5v-1z"/><path d="M2 2a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H2zm13 2v5H1V4a1 1 0 0 1 1-1h12a1 1 0 0 1 1 1zm-1 9H2a1 1 0 0 1-1-1v-1h14v1a1 1 0 0 1-1 1z"/></svg>
);
}
export default Credit_card_2_back;