import React from "react"; import styles from "./index.less"; import { Slider } from "antd"; import { FrownOutlined, SmileOutlined } from "@ant-design/icons"; class IconSlider extends React.Component { state = { value: 0 }; handleChange = value => { this.setState({ value }); }; render() { const { max, min } = this.props; const { value } = this.state; const mid = ((max - min) / 2).toFixed(5); const preColorCls = value >= mid ? "" : "icon-wrapper-active"; const nextColorCls = value >= mid ? "icon-wrapper-active" : ""; return (
); } } export default () => (
);