@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
20 lines (19 loc) • 681 B
TypeScript
export declare const RATINGITEM_CLASSNAME = "k-rating-item";
declare const states: ("focus" | "disabled" | "selected" | "hover")[];
export type RatingItemState = {
[K in (typeof states)[number]]?: boolean;
};
export type RatingItemProps = {
iconType?: "solid" | "outline" | "split";
dir?: "rtl" | "ltr";
};
export declare const RatingItem: {
(props: RatingItemState & RatingItemProps & React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element | undefined;
states: ("focus" | "disabled" | "selected" | "hover")[];
options: {};
className: string;
defaultOptions: {
iconType: string;
};
};
export default RatingItem;