@teaui/preact
Version:
Preact renderer for TeaUI
13 lines (12 loc) • 334 B
TypeScript
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 {};