import { TooltipProvider } from "@radix-ui/react-tooltip"; import { ComponentMeta, ComponentStory } from "@storybook/react"; import { Trash2 } from "react-feather"; import Button from "@calcom/ui/v2/core/Button"; export default { title: "Button", component: Button, argTypes: { color: { options: ["primary", "secondary", "minimal", "destructive"], control: { type: "select" }, }, disabled: { options: [true, false], control: { type: "boolean" }, }, loading: { options: [true, false], control: { type: "boolean" }, }, size: { options: ["base", "lg", "icon"], control: { type: "radio" }, }, }, } as ComponentMeta; const Template: ComponentStory = (args) =>

Secondary

Minimal

Destructive