You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
728 B
26 lines
728 B
import React, { Component } from "react"; |
|
import ExpandMoreIcon from '@material-ui/icons/ExpandMore'; |
|
|
|
import StatusAvatar from '../Avatar/Avatar'; |
|
|
|
export default class CallStart extends Component { |
|
constructor(props) { |
|
super(props); |
|
this.state = { |
|
}; |
|
} |
|
render() { |
|
const {brand,user} = this.props; |
|
return ( |
|
<div className="video-end d-flex"> |
|
<header className="d-flex"> |
|
<div className="video-calling__logo">{brand}</div> |
|
<div className="video-calling__expand"> |
|
<ExpandMoreIcon style={{ width : 30, height : 30 , color : 'white'}} /> |
|
</div> |
|
</header> |
|
<StatusAvatar status={user.status} src={user.src} /> |
|
</div> |
|
); |
|
} |
|
}
|
|
|