lbry-desktop/ui/js/component/notice.js
2017-06-05 21:21:55 -07:00

28 lines
419 B
JavaScript

import React from 'react';
export class Notice extends React.Component {
static propTypes = {
isError: React.PropTypes.bool
};
static defaultProps = {
isError: false
};
render() {
return (
<section
className={
'notice ' +
(this.props.isError ? 'notice--error ' : '') +
(this.props.className || '')
}
>
{this.props.children}
</section>
);
}
}
export default Notice;