/* eslint-disable tailwindcss/classnames-order */ import type { Meta, StoryObj } from '@storybook/nextjs' import Effect from '.' const meta = { title: 'Base/Other/Effect', component: Effect, parameters: { docs: { description: { component: 'Blurred circular glow used as a decorative background accent. Combine with relatively positioned containers.', }, source: { language: 'tsx', code: `
`.trim(), }, }, }, tags: ['autodocs'], } satisfies Meta export default meta type Story = StoryObj export const Playground: Story = { render: () => (
Accent glow
), }