8 lines
251 B
TypeScript

// from https://github.com/kristerkari/react-native-svg-transformer#using-typescript
declare module '*.svg' {
import React from 'react';
import { SvgProps } from 'react-native-svg';
const content: React.FC<SvgProps>;
export default content;
}