File size: 703 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
// @flow
import * as React from 'react';
import Icon from 'src/components/icon';
import { Bar, Content } from './style';
class Banner extends React.Component<{}> {
render() {
return (
<Bar>
<Content>
<Icon glyph="announcement" size="24" />
<p>
Spectrum is now read-only. Learn more about the decision in our{' '}
<a
href={
'https://spectrum.chat/spectrum/general/join-us-on-our-new-journey~e4ca0386-f15c-4ba8-8184-21cf5fa39cf5'
}
>
official announcement
</a>
.
</p>
</Content>
</Bar>
);
}
}
export default Banner;
|