UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

15 lines (14 loc) 575 B
import * as React from 'react'; import { KendoComponent } from '../_types/component'; declare const states: ("expanded" | "focus" | "disabled" | "hover")[]; export type KendoExpansionPanelProps = { title?: string; subtitle?: string; dir?: 'ltr' | 'rtl'; contentStyle?: React.CSSProperties; }; export type KendoExpansionPanelState = { [K in (typeof states)[number]]?: boolean; }; export declare const ExpansionPanel: KendoComponent<KendoExpansionPanelProps & KendoExpansionPanelState & React.HTMLAttributes<HTMLDivElement>>; export default ExpansionPanel;