torque-pro-assistant - v1.0.0
    Preparing search index...
    interface AlertProps {
        actions?: ReactNode;
        compact?: boolean;
        detail?: ReactNode;
        onClose?: () => void;
        subtitle?: ReactNode;
        testId?: string;
        title: ReactNode;
        variant?: AlertVariant;
    }
    Index

    Properties

    actions?: ReactNode

    Right-aligned action row — typically a primary Try again plus a ghost Cancel. Renders only when supplied.

    compact?: boolean

    Tightens padding + shrinks the icon for inline use (e.g. near a dropzone).

    detail?: ReactNode

    Optional monospace code block beneath the subtitle — used for parser line previews + raw error traces.

    onClose?: () => void

    Optional close (✕) button on the far right; fires onClose.

    subtitle?: ReactNode
    testId?: string
    title: ReactNode
    variant?: AlertVariant