import type { Meta, StoryObj } from "@storybook/react";
import { Logo } from "./Logo";

const meta: Meta<typeof Logo> = {
  component: Logo,
};

export default meta;

type Story = StoryObj<typeof Logo>;

const argTypes = {
  height: {
    control: { type: "number" },
  },
  width: {
    control: { type: "number" },
  },
};

export const Primary: Story = {
  render: (args) => <Logo {...args} />,
  args: {
    width: 298,
    height: 93,
  },
  argTypes,
  parameters: {
    themes: {
      themeOverride: "dark",
    },
  },
};
