Files
2025-07-14 12:25:42 +08:00

6 lines
110 B
TypeScript

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