import React from "react"; import Card from "./Card.js"; import { Tooltip } from "./Tooltip.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; import { InfoCircleFill } from "@styled-icons/bootstrap"; export default { component: Tooltip, title: "Components/Tooltip", decorators: [ReportDecorator], }; export const tooltip = () => (

Tooltip over text:{" "} Hover

Tooltip over icon:{" "}

Tooltip with specific width:{" "}

Tooltip with top-start placement and 10px offset:{" "}

);