UNPKG

@totalsoft/rocket-ui

Version:

A set of reusable and composable React components built on top of Material UI core for developing fast and friendly web applications interfaces.

27 lines 838 B
import MuiSlider from '@mui/material/Slider'; import MuiFormControl from '@mui/material/FormControl'; import MuiFormHelperText from '@mui/material/FormHelperText'; import { styled } from '@mui/material/styles'; import TextField from '../TextField'; export const StyledSlider = styled(MuiSlider)(() => ({ ['&.MuiSlider-root']: { top: '-1px', margin: 0, ['& .MuiSlider-markLabel']: { top: '20px', fontSize: '14px', lineHeight: '1.5em' } } })); export const StyledTextField = styled(TextField)(() => ({ margin: '-14px 0' })); export const FormControl = styled(MuiFormControl)(() => ({ overflow: 'visible', marginLeft: 0 })); export const FormHelperText = styled(MuiFormHelperText)(() => ({ marginLeft: 0 })); //# sourceMappingURL=SliderStyles.js.map