mirror of
https://github.com/wassname/talk.git
synced 2026-08-02 13:10:23 +08:00
18 lines
379 B
JavaScript
18 lines
379 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
|
|
};
|