@hc.ds/mobile
Version:
Healthy Church Design System - HC Mobile
9 lines • 439 B
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';
}
//# sourceMappingURL=type.d.ts.map