@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
20 lines (18 loc) • 459 B
text/typescript
import { ReactNode } from 'react';
import { TextProps as RNTextProps } from 'react-native';
export interface TextProps extends RNTextProps {
children?: ReactNode;
theme?:
| 'standard'
| 'primary'
| 'success'
| 'danger'
| 'warning'
| 'muted'
| 'weak'
| 'white'
| 'black'
| 'gray';
size?: '11' | '12' | '14' | '15' | '16' | '17' | '18' | '24' | '32';
weight?: '400' | '500' | '600' | '700';
}