@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
11 lines (10 loc) • 666 B
TypeScript
import { KendoButtonOptions, KendoButtonProps, KendoButtonState } from '../button';
import { KendoComponent } from '../_types/component';
export declare const SPEECH_TO_TEXT_BUTTON_CLASSNAME = "k-speech-to-text-button";
export type KendoSpeechToTextButtonOptions = KendoButtonOptions;
export type KendoSpeechToTextButtonState = KendoButtonState;
export type KendoSpeechToTextButtonProps = KendoButtonProps & KendoSpeechToTextButtonOptions & {
listening?: boolean;
};
export declare const SpeechToTextButton: KendoComponent<KendoSpeechToTextButtonProps & KendoSpeechToTextButtonState & React.HTMLAttributes<HTMLButtonElement>>;
export default SpeechToTextButton;