Files
web/packages/design-system/lib/components/Card/Card.stories.tsx
Michael Zetterberg 56973888c9 feat(SW-375): new tokens
new asset generation logic

BREAKING CHANGE: New tokens.
2025-03-07 07:24:37 +00:00

26 lines
392 B
TypeScript

import type { Meta, StoryObj } from '@storybook/react'
import { Card } from './Card.tsx'
const meta: Meta<typeof Card> = {
title: 'Components/Card',
component: Card,
}
export default meta
type Story = StoryObj<typeof Card>
export const Default: Story = {
args: {
as: 'Default',
},
}
export const Featured: Story = {
args: {
...Default.args,
as: 'Featured',
},
}