import React from 'react'; import { PixelCard } from './PixelCard'; export function Default() { return (

Compact dossier on the Atlas migration. Status nominal.

); } export function Headerless() { return (

Omit the title to get a plain well container — no header, no divider.

); } export function WithIcon() { const Icon = ( ); return (

All checks green. Last sync 3 minutes ago.

); } export function WithDescription() { return (

Body content sits under the description.

); } export function WithFooter() { return ( Due in 7 days} >

Total: $1,250.00

); } export function Tones() { return (
Tinted border + soft background. Tinted border + soft background. Tinted border + soft background. Tinted border + soft background.
); } export function Surfaces() { return (
Thick border + offset shadow. Soft border + smooth radius.
); } export function Interactive() { return ( alert('card clicked')} description="Press Enter or Space to activate via keyboard." >

Renders as role=button with focus ring.

); } export function AsLink() { return ( ); } export function WithMedia() { const Media = (
); return (

Card body.

); } export function WithBadge() { return (

Useful for highlighting fresh content.

); } export function ClampedDescription() { return (

Body still renders below the clamp.

); } export function PaddingScale() { return (
Tight padding. Roomy padding.
); } export function WithSubcomponents() { return ( Custom header

Body slot via subcomponent.

Footer slot
); }