maputnik/src/components/fields/_DeleteStopButton.jsx

26 lines
516 B
React
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import DocLabel from './DocLabel'
import Button from '../Button'
2018-10-06 16:06:21 +01:00
import {MdDelete} from 'react-icons/md'
export default class DeleteStopButton extends React.Component {
static propTypes = {
onClick: PropTypes.func,
}
render() {
return <Button
className="maputnik-delete-stop"
onClick={this.props.onClick}
>
<DocLabel
2018-10-06 16:06:21 +01:00
label={<MdDelete />}
doc={"Remove zoom level stop."}
/>
</Button>
}
}