beta-shadui
Version:
Beautifully designed components built with Svelte 5, Tailwind CSS, and bits-ui
12 lines (11 loc) • 375 B
TypeScript
import { type ClassValue } from "clsx";
import type { TransitionConfig } from "svelte/transition";
export declare function cn(...inputs: ClassValue[]): string;
type FlyAndScaleParams = {
y?: number;
x?: number;
start?: number;
duration?: number;
};
export declare const flyAndScale: (node: Element, params?: FlyAndScaleParams) => TransitionConfig;
export {};