test-iki-mini-app
Version:
ứng dựng bán hàng trên mini app z a l o
22 lines (20 loc) • 446 B
JSX
import React from "react";
export default function IconChevronLeft({ className, ...rest }) {
return (
<svg
xmlns="http://www.w3.org/2000/svg"
fill="none"
viewBox="0 0 24 24"
strokeWidth="1.5"
stroke="currentColor"
className={`${className}`}
{...rest}
>
<path
strokeLinecap="round"
strokeLinejoin="round"
d="M15.75 19.5L8.25 12l7.5-7.5"
/>
</svg>
);
}