Files
nativewind/types.d.ts
2022-04-04 17:08:56 +10:00

16 lines
259 B
TypeScript

import { ViewProps, TextProps, ImageProps } from "react-native";
declare module "react-native" {
interface ViewProps {
className?: string;
}
interface TextProps {
className?: string;
}
interface ImageProps {
className?: string;
}
}