codex-marketplace-ui-compon.../stories/Select.stories.ts

41 lines
813 B
TypeScript
Raw Normal View History

2024-08-20 13:57:58 +00:00
import type { Meta, StoryObj } from "@storybook/react";
import { fn } from "@storybook/test";
import { Select } from "../components/Select/Select";
const meta = {
title: "Forms/Select",
component: Select,
parameters: {
layout: "centered",
},
tags: ["autodocs"],
argTypes: {},
args: { onChange: fn() },
} satisfies Meta<typeof Select>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Default: Story = {
args: {
id: "select",
label: "Select",
options: [
["value 1", "Text 1"],
["value 2", "Text 2"],
],
},
};
export const CustomStyle: Story = {
args: {
id: "select",
label: "Select",
options: [
["value 1", "Text 1"],
["value 2", "Text 2"],
],
style: { "--codex-select-border": "1px solid red" },
},
};