mirror of
https://github.com/wassname/talk.git
synced 2026-08-19 12:40:16 +08:00
30 lines
722 B
TypeScript
30 lines
722 B
TypeScript
import cn from "classnames";
|
|
import { Localized } from "fluent-react/compat";
|
|
import React, { StatelessComponent } from "react";
|
|
import { Typography } from "talk-ui/components";
|
|
|
|
interface Props {
|
|
className: string;
|
|
}
|
|
|
|
const PoweredBy: StatelessComponent<Props> = props => {
|
|
return (
|
|
<div className={cn(props.className)}>
|
|
<Localized
|
|
id="comments-poweredBy"
|
|
logo={<Typography variant="heading4" container="span" />}
|
|
>
|
|
<Typography
|
|
variant="inputDescription"
|
|
container="span"
|
|
color="textSecondary"
|
|
>
|
|
{"Powered by <logo>The Coral Project</logo>"}
|
|
</Typography>
|
|
</Localized>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default PoweredBy;
|