import PropTypes from 'prop-types'; import React from 'react'; import Modal from '../../containers/windowed-modal.jsx'; import Box from '../box/box.jsx'; import ColorPicker from './color-picker.jsx'; import {defineMessages, injectIntl, intlShape, FormattedMessage} from 'react-intl'; import booleanInputIcon from './icon--boolean-input.svg'; import textInputIcon from './icon--text-input.svg'; import labelIcon from './icon--label.svg'; import styles from './custom-procedures.css'; const messages = defineMessages({ myblockModalTitle: { defaultMessage: 'Make a Block', description: 'Title for the modal where you create a custom block.', id: 'gui.customProcedures.myblockModalTitle' } }); const CustomProcedures = props => (
); CustomProcedures.propTypes = { color: PropTypes.string, componentRef: PropTypes.func.isRequired, intl: intlShape, onAddBoolean: PropTypes.func.isRequired, onAddLabel: PropTypes.func.isRequired, onAddTextNumber: PropTypes.func.isRequired, onCancel: PropTypes.func.isRequired, onColorChange: PropTypes.func.isRequired, onOk: PropTypes.func.isRequired, onToggleWarp: PropTypes.func.isRequired, warp: PropTypes.bool.isRequired }; export default injectIntl(CustomProcedures);