import React from "react"; import { Meta, StoryObj } from "@storybook/react-webpack5"; import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue, } from "./Select"; const meta: Meta = { component: Select, title: "Primitives/Select", argTypes: {}, }; export default meta; type Story = StoryObj; const data = [ { value: "dress-shirt-striped", label: "Striped Dress Shirt", }, { value: "relaxed-button-down", label: "Relaxed Fit Button Down", }, { value: "slim-button-down", label: "Slim Fit Button Down", }, { value: "dress-shirt-solid", label: "Solid Dress Shirt", }, { value: "dress-shirt-check", label: "Check Dress Shirt", }, ]; export const Variants: Story = { render: (args) => (
), args: {}, };