@grafana/ui
Version:
Grafana Components Library
11 lines (10 loc) • 308 B
TypeScript
import * as React from 'react';
type Props = {
children: React.ReactElement<Record<string, unknown>>;
visible: boolean;
size: number;
duration?: number;
horizontal?: boolean;
};
export declare function SlideOutTransition(props: Props): import("react/jsx-runtime").JSX.Element;
export {};