export const CreditCardIcon = ({
    color = "#0A1018",
    width = "20",
    height = "20",
}) => {
    return (
        <svg
            xmlns="http://www.w3.org/2000/svg"
            width={width}
            height={height}
            viewBox="0 0 20 20"
            fill="none"
        >
            <path
                d="M18.3333 8.33332H1.66663M9.16663 11.6667H4.99996M1.66663 6.83332L1.66663 13.1667C1.66663 14.1001 1.66663 14.5668 1.84828 14.9233C2.00807 15.2369 2.26304 15.4919 2.57664 15.6517C2.93316 15.8333 3.39987 15.8333 4.33329 15.8333L15.6666 15.8333C16.6 15.8333 17.0668 15.8333 17.4233 15.6517C17.7369 15.4919 17.9918 15.2369 18.1516 14.9233C18.3333 14.5668 18.3333 14.1001 18.3333 13.1667V6.83332C18.3333 5.8999 18.3333 5.43319 18.1516 5.07667C17.9918 4.76307 17.7369 4.5081 17.4233 4.34831C17.0668 4.16666 16.6 4.16666 15.6666 4.16666L4.33329 4.16666C3.39987 4.16666 2.93316 4.16666 2.57664 4.34831C2.26304 4.5081 2.00807 4.76307 1.84828 5.07667C1.66663 5.43319 1.66663 5.8999 1.66663 6.83332Z"
                stroke="#8693A5"
                stroke-width="1.4"
                stroke-linecap="round"
                stroke-linejoin="round"
            />
        </svg>
    );
};
