lbry-desktop/ui/js/component/notice.js
2017-06-06 17:19:12 -04:00

28 lines
471 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;