UNPKG

react-web-native-sketch

Version:

[TODO: We need an overview of how this can be used via npm vs as a local package]

13 lines (12 loc) 335 B
/// <reference types="react" /> export interface Props { key?: string | number; children?: any; style?: any; id?: string; classes?: any; onPress?: () => void; ellipsizeMode?: string; numberOfLines?: number; } export declare const Text: ({ classes, children, style, onPress, id }: Props) => JSX.Element;