mirror of
https://github.com/wassname/talk.git
synced 2026-07-23 13:10:20 +08:00
11 lines
305 B
TypeScript
11 lines
305 B
TypeScript
import React, { StatelessComponent } from "react";
|
|
import { HorizontalGutter, Typography } from "talk-ui/components";
|
|
|
|
const Moderate: StatelessComponent = ({ children }) => (
|
|
<HorizontalGutter>
|
|
<Typography variant="heading3">Moderate</Typography>
|
|
</HorizontalGutter>
|
|
);
|
|
|
|
export default Moderate;
|