Files
whyrating/packages/ui/shared/src/typings/svg.d.ts
2026-02-04 01:55:00 +01:00

6 lines
141 B
TypeScript

declare module "*.svg" {
import type { FC, SVGProps } from "react";
const content: FC<SVGProps<SVGElement>>;
export default content;
}