Initial commit for new panel

This commit is contained in:
AmirReza Jamali
2025-09-09 11:20:26 +03:30
commit 1d4ccb3575
343 changed files with 20031 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export type IconProps = React.SVGProps<SVGSVGElement>;
+3
View File
@@ -0,0 +1,3 @@
import type { Dispatch, SetStateAction } from "react";
export type SetStateActionType<T> = Dispatch<SetStateAction<T>>;