UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

14 lines (13 loc) 596 B
import { KendoComponent } from '../_types/component'; export declare const CARD_CLASSNAME = "k-card"; declare const states: ("focus" | "disabled" | "selected" | "hover")[]; export type KendoCardOptions = {}; export type KendoCardProps = KendoCardOptions & { orientation?: null | 'vertical' | 'horizontal'; callout?: null | 'true' | 'top' | 'bottom' | 'left' | 'right'; }; export type KendoCardState = { [K in (typeof states)[number]]?: boolean; }; export declare const Card: KendoComponent<KendoCardProps & KendoCardState & React.HTMLAttributes<HTMLDivElement>>; export default Card;