From adc177b28fdccacae02b7c77df636e5f7f5da1ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=A0imon=20Brandner?= Date: Thu, 22 Jul 2021 10:30:12 +0200 Subject: [PATCH] Fix a naming nit Co-authored-by: Michael Telatynski <7t3chguy@gmail.com> --- src/@types/svg.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/@types/svg.d.ts b/src/@types/svg.d.ts index aeb75b2bae..96f671c52f 100644 --- a/src/@types/svg.d.ts +++ b/src/@types/svg.d.ts @@ -15,6 +15,6 @@ limitations under the License. */ declare module "*.svg" { - const content: string; - export default content; + const path: string; + export default path; }