UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

22 lines (21 loc) 656 B
import React from 'react'; export interface TrackProps { filled: number; offset?: number; marksOffset?: number; marks: { value: number; label?: React.ReactNode; }[] | undefined; min: number; max: number; value: number; children: React.ReactNode; disabled: boolean | undefined; inverted: boolean | undefined; containerProps?: React.PropsWithRef<React.ComponentProps<'div'>>; } export declare function Track({ filled, children, offset, disabled, marksOffset, inverted, containerProps, ...others }: TrackProps): React.JSX.Element; export declare namespace Track { var displayName: string; }