mirror of
https://github.com/wassname/talk.git
synced 2026-07-29 11:28:24 +08:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
import React from 'react';
|
|
import styles from './Logo.css';
|
|
import {CoralLogo} from 'coral-ui';
|
|
|
|
export const Logo = () => (
|
|
<div className={styles.logo}>
|
|
<h1>
|
|
<CoralLogo className={styles.base} />
|
|
<span>Talk</span>
|
|
</h1>
|
|
</div>
|
|
);
|