UNPKG

rxn-grife

Version:

🎀 Programmatic Styling Library for React, React Native and Expo.

11 lines (10 loc) • 360 B
import React from "react"; import { Constructor, NativeMethods, TextProps } from "react-native"; export interface _TextProps extends TextProps { id?: string; className?: string; } declare class TextComponent extends React.Component<_TextProps> { } declare const _Text: Constructor<NativeMethods> & typeof TextComponent; export default _Text;