BaseTextProps
type BaseTextProps = { color?: string | ThemeColor; maxLines?: number; textAlign?: TextAlign; truncate?: boolean; value: string; weight?: 'normal' | 'medium' | 'semibold' | 'bold';};
Properties
Section titled “Properties”color?
Section titled “color?”optional color: | string | ThemeColor;
maxLines?
Section titled “maxLines?”optional maxLines: number;
textAlign?
Section titled “textAlign?”optional textAlign: TextAlign;
truncate?
Section titled “truncate?”optional truncate: boolean;
value: string;
weight?
Section titled “weight?”optional weight: "normal" | "medium" | "semibold" | "bold";