diff --git a/packages/shared/components/color-picker/ColorPicker.stories.tsx b/packages/shared/components/color-picker/ColorPicker.stories.tsx new file mode 100644 index 0000000000..f94f605fbc --- /dev/null +++ b/packages/shared/components/color-picker/ColorPicker.stories.tsx @@ -0,0 +1,37 @@ +import React from "react"; + +import { Meta, StoryObj } from "@storybook/react"; + +import { ColorPicker } from "./ColorPicker"; +import { ColorPickerProps } from "./ColorPicker.types"; + +const meta = { + title: "Components/ColorPicker", + component: ColorPicker, + argTypes: { + appliedColor: { control: "color" }, + }, + parameters: { + docs: { + description: { + component: "Time input", + }, + }, + }, +} satisfies Meta; +type Story = StoryObj; +export default meta; + +const Template = ({ ...args }: ColorPickerProps) => { + return ; +}; + +export const Default: Story = { + render: (args) =>