@progress/kendo-themes-html
Version:
A collection of HTML helpers used for developing Kendo UI themes
14 lines (13 loc) • 528 B
TypeScript
import { KendoComponent } from '../_types/component';
export declare const ANIMATION_CONTAINER_CLASSNAME = "k-animation-container";
export type KendoAnimationContainerProps = {
positionMode?: "absolute" | "fixed";
shown?: boolean;
offset?: {
top: number | string;
left: number | string;
};
animationStyle?: React.CSSProperties;
};
export declare const AnimationContainer: KendoComponent<KendoAnimationContainerProps & React.HTMLAttributes<HTMLDivElement>>;
export default AnimationContainer;