import type { ComponentStory, ComponentMeta } from "@storybook/react"; import { Badge } from "./badge"; const Story: ComponentMeta = { component: Badge, title: "Badge", }; export default Story; const Template: ComponentStory = args => ; export const Regular = Template.bind({}); Regular.args = { color: "success", label: "Label", }; export const EndIcon = Template.bind({}); EndIcon.args = { color: "success", label: "Label", endIcon: "arrow-right", }; export const StartIcon = Template.bind({}); StartIcon.args = { color: "success", label: "Label", icon: "x-close", }; export const Avatar = Template.bind({}); Avatar.args = { color: "success", label: "Label", avatar: "https://avatars.githubusercontent.com/u/28987707?s=96&v=4", }; export const Online = Template.bind({}); Online.args = { color: "success", label: "Label", status: "online", };