UNPKG

@mui/material

Version:

Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.

13 lines 427 B
import * as React from 'react'; import { SliderValueLabelProps } from "./SliderValueLabel.types.js"; /** * @ignore - internal component. */ declare function SliderValueLabel(props: SliderValueLabelProps): React.ReactElement<{ className?: string; children?: React.ReactNode; }, string | React.JSXElementConstructor<any>> | null; declare namespace SliderValueLabel { var propTypes: any; } export default SliderValueLabel;