mirror of
https://github.com/wassname/talk.git
synced 2026-07-24 13:20:47 +08:00
18 lines
384 B
JavaScript
18 lines
384 B
JavaScript
import React from 'react';
|
|
import styles from './Logo.css';
|
|
import { CoralLogo } from 'coral-ui';
|
|
import PropTypes from 'prop-types';
|
|
|
|
export const Logo = ({ className = '' }) => (
|
|
<div className={`${styles.logo} ${className}`}>
|
|
<h1>
|
|
<CoralLogo className={styles.base} />
|
|
<span>Talk</span>
|
|
</h1>
|
|
</div>
|
|
);
|
|
|
|
Logo.propTypes = {
|
|
className: PropTypes.string,
|
|
};
|