refactor: edit botton radius

This commit is contained in:
frab1t 2019-05-18 19:32:40 +02:00
parent d6d24bd444
commit 78c87f8e2d
1 changed files with 7 additions and 1 deletions

View File

@ -10,6 +10,12 @@ import {
Button
} from 'reactstrap';
//borderBottomRightRadius: 20,
// borderTopRightRadius: 20
const style = {
borderRadius: "0px 20px 20px 0px"
}
class SearchForm extends Component {
constructor(props) {
super(props);
@ -34,7 +40,7 @@ class SearchForm extends Component {
value={this.props.ticketId}
/>
<InputGroupAddon addonType="append">
<Button type="submit" outline color="primary">
<Button type="submit" outline color="primary" style={style}>
{this.props.buttonName}</Button>
</InputGroupAddon>
</InputGroup>