UNPKG

@kubit-ui-web/react-components

Version:

Kubit React Components is a customizable, accessible library of React web components, designed to enhance your application's user experience

11 lines (10 loc) 258 B
import { SliderStateType } from '../types/state'; /** * @description * Get the state of the slider */ export declare const getState: ({ hover, pressed, disabled, }: { hover: boolean; pressed: boolean; disabled: boolean; }) => SliderStateType;