import { Component } from "@/components/ui/elastic-slider";
const DemoOne = () => {
return (
<div className="flex w-full h-screen justify-center items-center">
<Component
leftIcon={<span className="text-gray-600">Min</span>}
rightIcon={<span className="text-gray-600">Max</span>}
startingValue={0}
defaultValue={50}
maxValue={100}
isStepped
stepSize={10}
/>
</div>
);
};
export { DemoOne };