import React from "react"; import Card from "./Card.js"; import { Circle, GroupCircle } from "./Circle.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; export default { component: Circle, title: "Components/Circle", decorators: [ReportDecorator], }; const groupColorMap = { high: "#BEE4BE", med: "#FFE1A3", low: "#F7A6B4", }; export const circle = () => (
S M L

GroupCircle with color map:

H M L

);