@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
21 lines (20 loc) • 651 B
TypeScript
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): import("react/jsx-runtime").JSX.Element;
export declare namespace Track {
var displayName: string;
}