@kubit-ui-web/react-components
Version:
Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience
12 lines (11 loc) • 340 B
TypeScript
import { Ref } from 'react';
type UseAnimationParamsType = {
animated: boolean;
};
type UseAnimationResponseType = {
boxesAnimationDone: boolean;
labelAnimationDone: boolean;
ref?: Ref<HTMLDivElement> | undefined;
};
export declare const useAnimation: (props: UseAnimationParamsType) => UseAnimationResponseType;
export {};