import React from "react"; import { ComponentMeta, ComponentStory } from "@storybook/react"; import { Status, StatusIndicator, ButtonList, StatusDot } from "../"; export default { title: "Components/Status", component: Status } as ComponentMeta; const Template: ComponentStory = (args) => ; export const Default = () => ( blue azure red green lime yellow ) export const WithDot = () => ( blue azure red green lime yellow ) export const AnimatedStatusDot = () => ( blue azure red green lime yellow ) export const LiteStatus = () => ( blue azure red green lime yellow ) export const Dots = () => { return ( ); } export const AnimatedDots = () => { return ( ); } export const Indicator = () => { return ( ); }