UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

12 lines (11 loc) 537 B
import { BoxProps, ElementProps, MantineColor, MantineRadius, MantineSize } from '../../../core'; export interface SliderRootProps extends BoxProps, ElementProps<'div'> { size: MantineSize | (string & {}) | number; children: React.ReactNode; color?: MantineColor; disabled: boolean | undefined; variant?: string; thumbSize?: string | number; radius?: MantineRadius; } export declare const SliderRoot: import("react").ForwardRefExoticComponent<SliderRootProps & import("react").RefAttributes<HTMLDivElement>>;