1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/web/ synced 2025-03-09 00:00:01 +01:00

users add button style

This commit is contained in:
irismarie 2021-04-22 12:11:12 +02:00
parent deb4a21ae9
commit be618b94ce

View file

@ -115,6 +115,15 @@ class Users extends Component {
}
render() {
const buttonStyle = {
marginLeft: '10px',
}
const iconStyle = {
height: '30px',
width: '30px'
}
return <div>
<h1>Users
<span className='icon-button'>
@ -123,6 +132,8 @@ class Users extends Component {
tooltip='Add User'
onClick={() => this.setState({ newModal: true })}
icon='plus'
buttonStyle={buttonStyle}
iconStyle={iconStyle}
/>
</span>
</h1>