Skip to content

BaseTextProps

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

optional maxLines: number;

optional textAlign: TextAlign;

optional truncate: boolean;

value: string;

optional weight: "normal" | "medium" | "semibold" | "bold";