etcher/typings/svg/index.d.ts
Alexis Svinartchouk f01f1ddd7a Inline all svgs
Changelog-entry: Inline all svgs
Change-type: patch
2020-06-11 19:22:13 +02:00

6 lines
151 B
TypeScript

declare module '*.svg' {
import { FunctionComponent, SVGProps } from 'react';
const _: FunctionComponent<SVGProps<HTMLOrSVGElement>>;
export = _;
}