// import React from "react" import React from 'react' import { type Meta, type StoryObj } from '@storybook/react' import { Slider } from '../index' const meta = { title: 'Components/Slider', component: Slider, args: { labelText: <>Slider, minLabel: 'Min', maxLabel: 'Max', }, } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { parameters: { docs: { canvas: { sourceState: 'shown', }, }, }, } export const Variants: Story = { render: (args) => (
), } export const MinMaxLabels: Story = {} export const LabelPosition: Story = { render: (args) => (
), }