mirror of
https://github.com/wassname/talk.git
synced 2026-08-04 13:23:35 +08:00
13 lines
249 B
JavaScript
13 lines
249 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 stroke="#E5E5E5" />
|
|
<span>Talk</span>
|
|
</h1>
|
|
</div>
|
|
);
|