Files
react-test/docs/data/material/customization/how-to-customize/SxProp.tsx

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
163 B
TypeScript
Raw Normal View History

2025-12-12 14:26:25 +09:00
import Slider from '@mui/material/Slider';
export default function SxProp() {
return <Slider defaultValue={30} sx={{ width: 300, color: 'success.main' }} />;
}