mirror of
https://github.com/zhigang1992/nativewind.git
synced 2026-06-15 10:17:54 +08:00
16 lines
259 B
TypeScript
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;
|
|
}
|
|
}
|