UNPKG

@department-of-veterans-affairs/mobile-component-library

Version:

VA Design System Mobile Component Library

11 lines (10 loc) 396 B
/** Prevents TypeScript from complaining about importing .svg files directly and * tells TypeScript which props .svg's can accept * See: https://github.com/kristerkari/react-native-svg-transformer?tab=readme-ov-file#using-typescript */ declare module '*.svg' { import { FC } from 'react' import { SvgProps } from 'react-native-svg' const content: FC<SvgProps> export default content }