UNPKG

@teaui/preact

Version:

Preact renderer for TeaUI

13 lines (12 loc) 334 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): preact.JSX.Element; export {};