This commit is contained in:
2025-07-14 12:25:42 +08:00
commit e46a110720
41 changed files with 1991 additions and 0 deletions

5
types/index.ts Normal file
View File

@@ -0,0 +1,5 @@
import { SVGProps } from "react";
export type IconSvgProps = SVGProps<SVGSVGElement> & {
size?: number;
};