@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
20 lines (19 loc) • 614 B
TypeScript
export declare const ANIMATION_CONTAINER_CLASSNAME = "k-animation-container";
export type KendoAnimationContainerProps = {
positionMode?: "absolute" | "fixed";
offset?: {
top: number | string;
left: number | string;
};
animationStyle?: React.CSSProperties;
};
export declare const AnimationContainer: {
(props: KendoAnimationContainerProps & React.HTMLAttributes<HTMLDivElement>): import("react/jsx-runtime").JSX.Element;
states: any[];
options: {};
className: string;
defaultOptions: {
positionMode: string;
};
};
export default AnimationContainer;