UNPKG

react-tokens-presenters

Version:
11 lines (10 loc) 264 B
import React, { FC } from 'react'; declare type TextProps = { children: React.ReactNode; isAlternative?: boolean; fontSize?: string; fontWeight?: string; lineHeight?: string; }; declare const Text: FC<TextProps>; export default Text;