@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
21 lines (20 loc) • 687 B
TypeScript
import * as React from 'react';
declare const states: ("focus" | "disabled" | "hover")[];
export type KendoExpansionPanelProps = {
title?: string;
subtitle?: string;
expanded?: boolean;
dir?: 'ltr' | 'rtl';
contentStyle?: React.CSSProperties;
};
export type KendoExpansionPanelState = {
[K in (typeof states)[number]]?: boolean;
};
export declare const ExpansionPanel: {
(props: KendoExpansionPanelProps & KendoExpansionPanelState & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: ("focus" | "disabled" | "hover")[];
options: {};
className: string;
defaultOptions: {};
};
export default ExpansionPanel;