deechael.net/types/index.ts
2024-09-18 22:54:40 +08:00

6 lines
110 B
TypeScript

import { SVGProps } from "react";
export type IconSvgProps = SVGProps<SVGSVGElement> & {
size?: number;
};