import React from 'react'; import PropTypes from 'prop-types'; import {defineMessages, injectIntl, intlShape} from 'react-intl'; import BufferedInputHOC from './forms/buffered-input-hoc.jsx'; import Label from './forms/label.jsx'; import Input from './forms/input.jsx'; import styles from './paint-editor.css'; const BufferedInput = BufferedInputHOC(Input); const messages = defineMessages({ stroke: { id: 'paint.paintEditor.stroke', description: 'Label for the color picker for the outline color', defaultMessage: 'Outline' } }); const StrokeColorIndicatorComponent = props => (