import React from "react"; import Card from "./Card.js"; import { Pill, GroupPill, GreenPill, WarningPill } from "./Pill.js"; import ReportDecorator from "./storybook/ReportDecorator.js"; export default { component: Pill, title: "Components/Pill", decorators: [ReportDecorator], }; const groupColorMap = { high: "#BEE4BE", med: "#FFE1A3", low: "#F7A6B4", }; export const pill = () => (

Basic

Default Yellow Green

Helper Pills

WarningPill GreenPill

GroupPill with color map:

High Medium Low

);