import type * as React from "react"; import { InfoIcon, WarningIcon } from "@phosphor-icons/react"; import { Alert, AlertAction, AlertDescription, AlertTitle } from "@reactive-resume/ui/components/alert"; import { Button } from "@reactive-resume/ui/components/button"; const wrap: React.CSSProperties = { display: "flex", flexDirection: "column", gap: 16, padding: 16, maxWidth: 540 }; export const Default = () => (
Resume saved Your changes were saved automatically and synced to your account.
); export const Destructive = () => (
Export failed We couldn't generate your PDF. Check your connection and try again.
); export const WithAction = () => (
Unsaved changes You have edits that haven't been published to your public resume yet.
);