wing + filter

This commit is contained in:
2024-06-24 19:18:39 +05:00
parent b1bd436ab7
commit a651ab552e
31 changed files with 1572 additions and 528 deletions
+3 -1
View File
@@ -11,7 +11,9 @@ interface ButtonProps {
icon?: React.ReactNode;
text?: string;
className?: string;
onClick?: () => void;
onClick?: (
event: React.MouseEvent<HTMLButtonElement, MouseEvent>
) => void | (() => void);
disabled?: boolean;
isCircleRounded?: boolean;
type?: "button" | "submit" | "reset";