UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

15 lines (14 loc) 563 B
import React from 'react'; import { KendoComponent } from '../_types/component'; export declare const BUBBLE_CLASSNAME = "k-bubble"; declare const states: ("active" | "focus" | "selected" | "hover")[]; export type KendoBubbleProps = { content?: null | string | React.JSX.Element; expandable?: boolean; expanded?: boolean; }; export type KendoBubbleState = { [K in (typeof states)[number]]?: boolean; }; export declare const Bubble: KendoComponent<KendoBubbleProps & KendoBubbleState & React.HTMLAttributes<HTMLDivElement>>; export default Bubble;