wip: builds, need to test with icons, fixes import issue for assets

This commit is contained in:
Loewy
2024-02-12 21:35:09 -08:00
parent 62637badcb
commit b30ef2ef2b
7 changed files with 200 additions and 9 deletions

10
typings/declaration.d.ts vendored Normal file
View File

@@ -0,0 +1,10 @@
declare module "*.svg" {
import { SvgProps } from "react-native-svg";
const content: React.FC<SvgProps>;
export default content;
}
declare module "*.png" {
const value: any;
export = value;
}