react-native-modern-elements
Version:
A modern, customizable UI component library for React Native
11 lines (10 loc) • 351 B
TypeScript
import React from "react";
import { StyleProp, TextStyle } from "react-native";
interface ExpandableTextProps {
children: React.ReactNode;
numberOfLines?: number;
textStyle?: StyleProp<TextStyle>;
readMoreStyle?: StyleProp<TextStyle>;
}
declare const _default: React.NamedExoticComponent<ExpandableTextProps>;
export default _default;