webcoreui
Version:
UI component and template library for Astro, Svelte, and React apps styled with Sass.
23 lines (19 loc) • 495 B
text/typescript
import type { InputTarget } from '../Input/input'
export type SliderProps = {
min: number
max: number
value?: number
step?: number
disabled?: boolean
color?: string
background?: string
thumb?: string
id?: string
className?: string
}
export type SvelteSliderProps = {
onChange?: (event: Event & InputTarget) => void
} & SliderProps
export type ReactSliderProps = {
onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void
} & SliderProps