UNPKG

@teaui/react

Version:

React Reconciler and renderer for TeaUI

13 lines (12 loc) 327 B
export interface FontStyleValue { bold: boolean; italic: boolean; underline: boolean; strikethrough: boolean; } interface FontStyleProps { value: FontStyleValue; onChange: (value: FontStyleValue) => void; } export declare function FontStyle({ value, onChange }: FontStyleProps): JSX.Element; export {};