File size: 273 Bytes
d61b9c7
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import React from "react";

import styles from "../App.module.css";

function Tooltip(props: { label: string }) {
  return (
    <div className={styles.tooltip}>
      <div className={styles["tooltip__label"]}>{props.label}</div>
    </div>
  );
}

export default Tooltip;