Apply alert styles to deprecation warning

pull/3290/head
Alex P 2018-04-02 14:18:03 -07:00 committed by Iris Scholten
parent 1616c3fcb4
commit 880346faf3
1 changed files with 3 additions and 2 deletions

View File

@ -5,8 +5,9 @@ interface Props {
}
const DeprecationWarning: SFC<Props> = ({message}) => (
<div>
<span className="icon stop" /> {message}
<div className="alert alert-primary">
<span className="icon stop" />
<div className="alert-message">{message}</div>
</div>
)