5 lines
110 B
TypeScript
5 lines
110 B
TypeScript
declare module '*.svg' {
|
|
import { FC, SVGProps } from 'react';
|
|
export default FC<SVGProps<SVGElement>>;
|
|
}
|