Files
nrwl--nx/packages/react-native/typings/svg.d.ts
T
2026-07-13 12:38:36 +08:00

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;
}