Files
cloudrite/.design-sync/previews/Button.tsx
T
ASOwnerYTandClaude Opus 5 3970cf9a00
Docker / build (push) Failing after 1m43s
Add design-sync inputs for claude.ai/design
Import this repo's components into a Claude Design project so the design
agent builds with the real Cloudrite library instead of generic components.

The repo is a Next.js app, not a component library: no dist/, no exports
map, no .d.ts tree, and Tailwind exists only as build directives. So
.design-sync/ carries a small build that manufactures a consumable package
from source (staged to the gitignored .ds-pkg/):

- tsconfig.dts.json  declaration emit, for real <Name>Props contracts
- build-css.mjs      Tailwind v4 -> a static stylesheet via @tailwindcss/postcss
- make-pkg.mjs       stages the package; index.js exports all 292 symbols
                     while index.d.ts exports only the 61 roots, so shadcn's
                     flat compound parts don't each become a preview card.
                     Also generates the per-root parts tables in docs/
- shims/next-link    router-free anchor; the real next/link needs
                     AppRouterContext and drags in the App Router runtime
- fonts/             Space Grotesk + Inter woff2 (SIL OFL). next/font supplies
                     these at runtime in the app, so the bundle has none

previews/ holds 40 authored preview stories, conventions.md is prepended to
the generated README as the design agent's usage guide, and NOTES.md records
the gotchas a future sync would otherwise rediscover.

Co-Authored-By: Claude Opus 5 <[email protected]>
2026-08-05 17:04:10 +12:00

72 lines
2.1 KiB
TypeScript

import type { ReactNode } from 'react';
import { Button } from 'cloudrite';
import { ArrowRight, Download, Loader2, Phone, Trash2 } from 'lucide-react';
// Cloudrite is a dark-only design system: `ghost`, `link` and `outline` are all
// foreground-coloured, so they vanish on the preview harness's white card body.
// Every story renders on the brand surface — which is also how a real screen is
// built (see the README's conventions section).
const Surface = ({ children }: { children: ReactNode }) => (
<div className="bg-background text-foreground rounded-lg p-6">{children}</div>
);
export const Variants = () => (
<Surface>
<div className="flex flex-wrap items-center gap-3">
<Button>Get a quote</Button>
<Button variant="secondary">Learn more</Button>
<Button variant="outline">View services</Button>
<Button variant="ghost">Cancel</Button>
<Button variant="link">Read the case study</Button>
<Button variant="destructive">Delete site</Button>
</div>
</Surface>
);
export const Sizes = () => (
<Surface>
<div className="flex flex-wrap items-center gap-3">
<Button size="sm">Small</Button>
<Button size="default">Default</Button>
<Button size="lg">Large</Button>
<Button size="icon" aria-label="Download invoice">
<Download />
</Button>
</div>
</Surface>
);
export const WithIcons = () => (
<Surface>
<div className="flex flex-wrap items-center gap-3">
<Button>
Book a callout
<ArrowRight />
</Button>
<Button variant="outline">
<Phone />
021 107 7483
</Button>
<Button variant="destructive">
<Trash2 />
Remove backup
</Button>
</div>
</Surface>
);
export const States = () => (
<Surface>
<div className="flex flex-wrap items-center gap-3">
<Button disabled>Disabled</Button>
<Button variant="outline" disabled>
Disabled outline
</Button>
<Button disabled>
<Loader2 className="animate-spin" />
Provisioning
</Button>
</div>
</Surface>
);