UNPKG

aura-glass

Version:

A comprehensive glassmorphism design system for React applications with 142+ production-ready components

19 lines 441 B
export type AnimationType = 'spring' | 'tween' | 'keyframes'; export interface AnimationConfig { type: AnimationType; duration?: number; delay?: number; ease?: string; } export interface SpringConfig { stiffness: number; damping: number; mass: number; } export interface AnimationProps { duration?: number; delay?: number; ease?: string; type?: AnimationType; } //# sourceMappingURL=types.d.ts.map