This commit is contained in:
Ulf Gebhardt 2025-02-20 03:46:56 +01:00
parent d0c20c6e4b
commit b474d38aa8
Signed by: ulfgebhardt
GPG Key ID: DA6B843E748679C9

4
src/types/SVG.d.ts vendored
View File

@ -1,7 +1,7 @@
declare module '*.svg' {
import * as React from 'react'
import type { FunctionComponent, SVGProps } from 'react'
export const ReactComponent: React.FunctionComponent<React.SVGProps<SVGSVGElement>>
export const ReactComponent: FunctionComponent<SVGProps<SVGSVGElement>>
const src: string
export default src
}