UNPKG

@arolariu/components

Version:

🎨 70+ beautiful, accessible React components built on Base UI. TypeScript-first, CSS Modules styling, tree-shakeable, SSR-ready. Perfect for modern web apps, design systems & rapid prototyping. Zero config, maximum flexibility! ⚡

41 lines (40 loc) • 558 B
const durations = { fast: 0.1, normal: 0.15, slow: 0.2, slower: 0.3, slowest: 0.5 }; const easings = { ease: [ 0.25, 0.1, 0.25, 1 ], easeIn: [ 0.42, 0, 1, 1 ], easeOut: [ 0, 0, 0.58, 1 ], easeInOut: [ 0.42, 0, 0.58, 1 ], spring: { type: "spring", stiffness: 300, damping: 24 } }; export { durations, easings }; //# sourceMappingURL=tokens.js.map