UNPKG

zmp-react

Version:

Build full featured iOS & Android apps using ZMP & React

19 lines (14 loc) 445 B
import * as React from 'react'; interface TitleProps { slot?: string; className?: string; style?: React.CSSProperties; size?: 'xsmall' | 'small' | 'normal' | 'large' | 'xlarge'; textAlign?: 'center' | 'left' | 'right'; noSpace?: boolean; bold?: boolean; ref?: React.MutableRefObject<{el: HTMLElement | null;}>; children?: React.ReactNode; } declare const Title: React.FunctionComponent<TitleProps>; export default Title;