// Copyright 2024, Command Line Inc. // SPDX-License-Identifier: Apache-2.0 import type { Meta, StoryObj } from "@storybook/react"; import { Popover, PopoverButton, PopoverContent } from "./popover"; const meta: Meta = { title: "Elements/Popover", component: Popover, args: { className: "custom-popover-class", }, argTypes: { className: { description: "Custom class for popover styling", }, }, }; export default meta; type Story = StoryObj; export const DefaultPopover: Story = { render: (args) => { return (
Empty
); }, args: { className: "custom-popover-class", }, };