- change refresh icon & apply refreshing logic
- apply validation in action btn in menu
- preserve on customer info state upon refresh
This commit is contained in:
2026-01-04 07:00:56 +03:00
parent 13cce2f12f
commit f294138d30
13 changed files with 233 additions and 105 deletions

View File

@@ -2,9 +2,10 @@ interface PlusIconType {
className?: string;
onClick?: () => void;
dimesion?: string
color?: string
}
const PlusIcon = ({ className, onClick, dimesion }: PlusIconType) => {
const PlusIcon = ({ className, onClick, dimesion, color }: PlusIconType) => {
return (
<svg
width={dimesion || "16"}
@@ -17,7 +18,7 @@ const PlusIcon = ({ className, onClick, dimesion }: PlusIconType) => {
>
<path
d="M7.99992 3.3335V12.6668M3.33325 8.00016H12.6666"
stroke="#FFD633"
stroke={color || "#FFD633"}
strokeWidth="1.5"
strokeLinecap="round"
strokeLinejoin="round"