| | |
| | | import PropTypes from 'prop-types' |
| | | import { SketchPicker } from 'react-color' |
| | | import { Popover } from 'antd' |
| | | import { CloseOutlined } from '@ant-design/icons' |
| | | import { CloseCircleFilled } from '@ant-design/icons' |
| | | |
| | | import './index.scss' |
| | | |
| | |
| | | <div className="color-sketch-block-inner" style={ {background: color} }></div> |
| | | </div> |
| | | </Popover> |
| | | <div className="color-sketch-value">{color}{allowClear && color ? <CloseOutlined onClick={this.clear}/> : null}</div> |
| | | <div className="color-sketch-value">{color}{allowClear && color ? <CloseCircleFilled onClick={this.clear}/> : null}</div> |
| | | </div> |
| | | ) |
| | | } |