mirror of
https://github.com/wassname/talk.git
synced 2026-06-30 08:47:13 +08:00
14 lines
393 B
JavaScript
14 lines
393 B
JavaScript
import React from 'react';
|
|
import cn from 'classnames';
|
|
import styles from './DefaultIcon.css';
|
|
import {Icon} from 'coral-ui';
|
|
|
|
const DefaultIcon = ({className}) => (
|
|
<div className={cn(styles.qbIconContainer, className)}>
|
|
<Icon name="chat_bubble" className={cn(styles.iconBubble)} />
|
|
<Icon name="person" className={cn(styles.iconPerson)} />
|
|
</div>
|
|
);
|
|
|
|
export default DefaultIcon;
|