54 lines
1.2 KiB
JavaScript
54 lines
1.2 KiB
JavaScript
function CardTickD() {
|
|
return (
|
|
<svg
|
|
className="w-full h-full"
|
|
xmlns="http://www.w3.org/2000/svg"
|
|
width="24"
|
|
height="25"
|
|
viewBox="0 0 24 25"
|
|
fill="none"
|
|
>
|
|
<path
|
|
d="M2 9H13.5"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M6 17H8"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M10.5 17H14.5"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeMiterlimit="10"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M22 11.53V16.61C22 20.12 21.11 21 17.56 21H6.44C2.89 21 2 20.12 2 16.61V8.39C2 4.88 2.89 4 6.44 4H13.5"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
<path
|
|
d="M16.5 6.5L18 8L22 4"
|
|
stroke="white"
|
|
strokeWidth="1.5"
|
|
strokeLinecap="round"
|
|
strokeLinejoin="round"
|
|
/>
|
|
</svg>
|
|
);
|
|
}
|
|
|
|
export default CardTickD;
|