import { ComponentProps } from "react"; import { Button, ButtonGroup, Tag } from "@blueprintjs/core"; import { Meta, StoryObj } from "@storybook/react"; import { CustomClasses } from "../src/constants"; type Props = ComponentProps; export default { component: Button, args: { style: { margin: "10px" }, text: "Button text", title: "Button text" } } as Meta; const Template: StoryObj["render"] = (args) => { const renderVersions = (extraProps: Partial = {}) => { const styles = <>