UNPKG

@progress/kendo-themes-html

Version:

A collection of HTML helpers used for developing Kendo UI themes

11 lines (10 loc) 495 B
import { KendoComponent } from '../_types/component'; export declare const CARD_WRAP_CLASSNAME = "k-card-wrap"; declare const states: ("focus" | "selected")[]; export type KendoCardWrapOptions = {}; export type KendoCardWrapProps = KendoCardWrapOptions & {}; export type KendoCardWrapState = { [K in (typeof states)[number]]?: boolean; }; export declare const CardWrap: KendoComponent<KendoCardWrapProps & KendoCardWrapState & React.HTMLAttributes<HTMLDivElement>>; export default CardWrap;