cart & checkout: UI enhacnements

This commit is contained in:
2025-12-25 21:13:25 +03:00
parent 90e729cdce
commit ce9092d634
24 changed files with 167 additions and 86 deletions

View File

@@ -1,13 +1,14 @@
interface PlusIconType {
className?: string;
onClick?: () => void;
dimesion?: string
}
const PlusIcon = ({ className, onClick }: PlusIconType) => {
const PlusIcon = ({ className, onClick, dimesion }: PlusIconType) => {
return (
<svg
width="16"
height="16"
width={dimesion || "16"}
height={dimesion || "16"}
viewBox="0 0 16 16"
fill="none"
xmlns="http://www.w3.org/2000/svg"