UNPKG

solid-styles

Version:

Zero-runtime styled components for SolidJS with Lightning CSS optimization and spring animations. Production-ready CSS-in-JS with 100% test coverage.

31 lines (26 loc) 642 B
/** * Animation System Index * * This is the main entry point for the animation system, * exporting all components, hooks, and utilities. */ // Export animated component factory and types export { animated, default as AnimatedComponents, variants, type AnimateConfig, type AnimatedProps } from './animatedStyled'; // Export all animation hooks export * from './hooks'; // Export spring bridge utilities export { createAnimation, createToggleAnimation, type AnimationOptions, type AnimationControls, type AnimationState } from './spring-bridge'; // Export advanced animation features export * from './advanced';