mirror of
https://github.com/wassname/talk.git
synced 2026-07-11 05:00:09 +08:00
14 lines
419 B
JavaScript
14 lines
419 B
JavaScript
import React from 'react';
|
|
import cn from 'classnames';
|
|
import styles from './DefaultQuestionBoxIcon.css';
|
|
import { Icon } from 'coral-ui';
|
|
|
|
const DefaultQuestionBoxIcon = ({ className }) => (
|
|
<div className={cn(styles.root, className)}>
|
|
<Icon name="chat_bubble" className={cn(styles.iconBubble)} />
|
|
<Icon name="person" className={cn(styles.iconPerson)} />
|
|
</div>
|
|
);
|
|
|
|
export default DefaultQuestionBoxIcon;
|