import type { Meta, StoryObj } from "@storybook/svelte"; import UpObjectCard from "../components/display/UpObjectCard.svelte"; import { imageAddress } from "./common"; import RouterDecorator from "./RouterDecorator.svelte"; const address = imageAddress; const meta: Meta = { title: "Display/UpObjectCard", component: UpObjectCard, tags: ["autodocs"], args: { address, }, argTypes: { address: { defaultValue: address, name: "Address", type: "string", }, }, // eslint-disable-next-line @typescript-eslint/no-explicit-any decorators: [() => RouterDecorator as any], }; export default meta; type Story = StoryObj; export const Default: Story = {}; export const WithLabels: Story = { args: { labels: ["Label 1", "Label B", "Label III"], }, }; export const WithoutThumbnail: Story = { args: { thumbnail: false, }, }; export const Small: Story = { args: { banner: false, }, };