UNPKG

epic-loading-animations

Version:
21 lines (17 loc) 440 B
import type { Meta, StoryObj } from '@storybook/react'; import LoadingComponent from "@/components/spinning-rings/loading-component"; const meta: Meta<typeof LoadingComponent> = { component: LoadingComponent, argTypes: { color: { control: "text" } } }; export default meta; type Story = StoryObj<typeof LoadingComponent>; export const Primary: Story = { args: { color: "#FFF" } };