mirror of
https://github.com/a-nyx/maputnik-with-pmtiles.git
synced 2025-04-04 17:54:42 +02:00
25 lines
516 B
JavaScript
25 lines
516 B
JavaScript
import React from 'react'
|
|
import PropTypes from 'prop-types'
|
|
|
|
import DocLabel from './DocLabel'
|
|
import Button from '../Button'
|
|
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
|
|
label={<MdDelete />}
|
|
doc={"Remove zoom level stop."}
|
|
/>
|
|
</Button>
|
|
}
|
|
}
|