mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-02 10:37:13 -05:00
7 lines
172 B
TypeScript
7 lines
172 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;
|
|
}
|