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