import * as React from 'react'; import { addPropertyControls, ControlType } from 'framer'; // tslint:disable-next-line: ban-ts-ignore // @ts-ignore import MuiSlider from '@material-ui/core/Slider'; interface Props { color?: 'primary' | 'secondary'; disabled?: boolean; max?: number; min?: number; orientation?: 'horizontal' | 'vertical'; step?: number; track?: 'normal' | false | 'inverted'; valueLabelDisplay?: 'on' | 'auto' | 'off'; width?: number; height?: number; } const defaultProps: Props = { color: 'primary', disabled: false, max: 100, min: 0, orientation: 'horizontal', step: 1, track: 'normal', valueLabelDisplay: 'off', width: 160, height: 24, }; export const Slider: React.SFC = (props: Props) => { const { width, height, ...other } = props; return ; }; Slider.defaultProps = defaultProps; addPropertyControls(Slider, { color: { type: ControlType.Enum, title: 'Color', options: ['primary', 'secondary'], }, disabled: { type: ControlType.Boolean, title: 'Disabled', }, max: { type: ControlType.Number, title: 'Max', }, min: { type: ControlType.Number, title: 'Min', }, orientation: { type: ControlType.Enum, title: 'Orientation', options: ['horizontal', 'vertical'], }, step: { type: ControlType.Number, title: 'Step', }, track: { type: ControlType.Enum, title: 'Track', options: ['normal', false, 'inverted'], }, valueLabelDisplay: { type: ControlType.Enum, title: 'Value label display', options: ['on', 'auto', 'off'], }, });