--- order: 2 title: zh-CN: 带 icon 的滑块 en-US: Slider with icon --- ## zh-CN 滑块左右可以设置图标来表达业务含义。 ## en-US You can add an icon beside the slider to make it meaningful. ````jsx import { Slider, Icon } from 'antd'; class IconSlider extends React.Component { constructor(props) { super(props); const { max, min } = props; const mid = ((max - min) / 2).toFixed(5); this.state = { preIconClass: this.props.value >= mid ? '' : 'anticon-highlight', nextIconClass: this.props.value >= mid ? 'anticon-highlight' : '', mid, sliderValue: this.props.value, }; } handleChange = (v) => { this.setState({ preIconClass: v >= this.state.mid ? '' : 'anticon-highlight', nextIconClass: v >= this.state.mid ? 'anticon-highlight' : '', sliderValue: v, }); } render() { return (