mirror of
https://github.com/wassname/talk.git
synced 2026-07-16 11:22:16 +08:00
* Merge client * Add linting script * Rename serve to start:development * Move error harmonization and handling to network layer * Show Comment Stream * Added initial test
23 lines
511 B
TypeScript
23 lines
511 B
TypeScript
import { Localized } from "fluent-react/compat";
|
|
import * as React from "react";
|
|
import { StatelessComponent } from "react";
|
|
|
|
import { Typography } from "talk-ui/components";
|
|
|
|
export interface LogoProps {
|
|
className?: string;
|
|
gutterBottom?: boolean;
|
|
}
|
|
|
|
const Logo: StatelessComponent<LogoProps> = props => {
|
|
return (
|
|
<Localized id="stream-logo">
|
|
<Typography variant="heading1" gutterBottom={props.gutterBottom}>
|
|
Talk NEO
|
|
</Typography>
|
|
</Localized>
|
|
);
|
|
};
|
|
|
|
export default Logo;
|