import type { ReactNode } from 'react'; import { Button, Collapsible, CollapsibleContent, CollapsibleTrigger } from 'cloudrite'; import { ChevronsUpDown } from 'lucide-react'; // Cloudrite is dark-only — foreground-coloured text and `border-border` are // invisible on the preview harness's white card body. Stories render on the // brand surface, which is also how a real screen is built. const Surface = ({ children }: { children: ReactNode }) => (
{children}
); export const Open = () => (
What's included
{['Nightly backups', 'Managed SSL', 'Uptime monitoring'].map((item) => (
{item}
))}
); export const Closed = () => (
What's included
Hidden until opened.
);