well-rounded-ui
Version:
Well Rounded UI Inputs to beautify your web projects !
24 lines (19 loc) • 517 B
text/typescript
import type { Meta, StoryObj } from "@storybook/react";
import FloatingSidebarExample from "./FloatingSidebarExample";
const meta = {
title: "Interactions/FloatingSidebar",
component: FloatingSidebarExample,
parameters: {
layout: "centered"
},
argTypes: {}
} satisfies Meta<typeof FloatingSidebarExample>;
export default meta;
type Story = StoryObj<typeof meta>;
export const Basic: Story = {
args: {
title: "Any content",
direction: "right",
show: false
}
};