import React from "react"; import Card from "@mui/material/Card"; import { Typography } from "@mui/material"; import Box from '@mui/material/Box'; import Slider from '@mui/material/Slider'; const marks = [ { value: 0, label: '0°C', }, { value: 20, label: '20°C', }, { value: 37, label: '37°C', }, { value: 100, label: '100°C', }, ]; function valuetext(value) { return `${value}°C`; } export default function LabelAlwaysVisible() { return ( <> Label Always Visible ); }