mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-05-25 08:32:27 -04:00
8 lines
173 B
TypeScript
8 lines
173 B
TypeScript
declare module "*.svg" {
|
|
import type React from "react";
|
|
import type { SvgProps } from "react-native-svg";
|
|
|
|
const content: React.FC<SvgProps>;
|
|
export default content;
|
|
}
|