import type { Meta, StoryObj } from '@storybook/react' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from './card' import { Badge } from './badge' const meta: Meta = { title: 'Primitives/Card', component: Card, parameters: { layout: 'centered' }, } export default meta type Story = StoryObj const SampleCard = ({ variant, hover }: { variant?: 'default' | 'glass' | 'sandbox' | 'elevated', hover?: boolean }) => (
Agent Session Running
GPT-4o · Tangle Cloud

Processing 14 tool calls · 3.2k tokens used

) export const Default: Story = { render: () => } export const Elevated: Story = { render: () => } export const Glass: Story = { render: () => (
), } export const Sandbox: Story = { render: () => } export const Hoverable: Story = { render: () => } export const AllVariants: Story = { name: 'All Variants', render: () => (
), }