mirror of
https://github.com/mue/mue.git
synced 2026-07-07 14:17:09 +02:00
11 lines
207 B
JavaScript
11 lines
207 B
JavaScript
import './tooltip.scss';
|
|
|
|
export default function Tooltip(props) {
|
|
return (
|
|
<div className='tooltip'>
|
|
{props.children}
|
|
<span className='tooltipTitle'>{props.title}</span>
|
|
</div>
|
|
);
|
|
}
|