mirror of
https://github.com/standardnotes/mobile.git
synced 2026-01-31 11:01:23 -05:00
7 lines
166 B
TypeScript
7 lines
166 B
TypeScript
declare module '*.svg' {
|
|
import React from 'react';
|
|
import { SvgProps } from 'react-native-svg';
|
|
const content: React.FC<SvgProps>;
|
|
export default content;
|
|
}
|