@kloudlite/design-system
Version:
A design system for building ambitious products.
11 lines (10 loc) • 378 B
TypeScript
import { ReactNode } from 'react';
interface IAnimateHide {
children: ReactNode;
show: boolean;
initial?: boolean;
className?: string;
onClick?: (e: React.MouseEvent<HTMLDivElement>) => void;
}
declare const AnimateHide: ({ children, show, initial, className, onClick, }: IAnimateHide) => import("react/jsx-runtime").JSX.Element;
export default AnimateHide;