@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
16 lines (15 loc) • 683 B
TypeScript
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;
orientation?: 'horizontal' | 'vertical';
}
export declare function SliderRoot({ size, disabled, variant, color, thumbSize, radius, orientation, ...others }: SliderRootProps): import("react/jsx-runtime").JSX.Element;
export declare namespace SliderRoot {
var displayName: string;
}