UNPKG

reactbits-animation

Version:

A comprehensive collection of beautiful, performant React animation components including bounce effects, click sparks, star borders, scroll-triggered animations, and fade transitions.

14 lines 407 B
import React from "react"; interface ElasticSliderProps { defaultValue?: number; startingValue?: number; maxValue?: number; className?: string; isStepped?: boolean; stepSize?: number; leftIcon?: React.ReactNode; rightIcon?: React.ReactNode; } declare const ElasticSlider: React.FC<ElasticSliderProps>; export default ElasticSlider; //# sourceMappingURL=ElasticSlider.d.ts.map