mirror of
https://github.com/wassname/talk.git
synced 2026-07-29 11:28:24 +08:00
18 lines
507 B
JavaScript
18 lines
507 B
JavaScript
import React from 'react';
|
|
import {Icon} from 'plugin-api/beta/client/components/ui';
|
|
import styles from './Tooltip.css';
|
|
|
|
export default class Tooltip extends React.Component {
|
|
render() {
|
|
return (
|
|
<div className={styles.tooltip}>
|
|
<Icon name="info_outline" className={styles.icon} />
|
|
<h3 className={styles.headline}>Featured Comments:</h3>
|
|
<p className={styles.description}>
|
|
Comments selected by our team as worth reading
|
|
</p>
|
|
</div>
|
|
);
|
|
}
|
|
}
|