aboutsummaryrefslogtreecommitdiff
path: root/src/declarations.d.ts
diff options
context:
space:
mode:
authorIvan Chen <ivan@thetaggid.com>2020-10-08 16:26:16 -0400
committerGitHub <noreply@github.com>2020-10-08 16:26:16 -0400
commit6e3fe33e5e1d3818ef8bb942c1544581ab8c0688 (patch)
tree11d86adf5ef56efadf6a1edafdc33fdba20fab80 /src/declarations.d.ts
parentcf0f22d4e86e44efee6ae1d4f23e0642df117b79 (diff)
[TMA-229] Moments Barebones (#50)
* added react native svg transformation to support svg icons * finished moments barebones view * resolved a warning from the svg file
Diffstat (limited to 'src/declarations.d.ts')
-rw-r--r--src/declarations.d.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/declarations.d.ts b/src/declarations.d.ts
new file mode 100644
index 00000000..e5bbc768
--- /dev/null
+++ b/src/declarations.d.ts
@@ -0,0 +1,6 @@
+declare module '*.svg' {
+ import React from 'react';
+ import {SvgProps} from 'react-native-svg';
+ const content: React.FC<SvgProps>;
+ export default content;
+}