@octopusdeploy/design-system-components
Version:
The design systems component library.
10 lines (9 loc) • 371 B
TypeScript
import type { ReactNode } from "react";
interface QuietCalloutProps {
type: QuietCalloutType;
title?: string;
children: ReactNode;
}
type QuietCalloutType = "info" | "success" | "warning" | "danger" | "feature" | "upsell";
export declare function QuietCallout({ type, title, children }: QuietCalloutProps): import("react/jsx-runtime").JSX.Element;
export {};