This commit is contained in:
ray zhou
2026-06-29 14:51:55 +08:00
parent 225fb2bd28
commit 2dd9f17da9
319 changed files with 29461 additions and 9412 deletions

View File

@@ -0,0 +1,11 @@
import type { JSX } from "react";
type CalloutToneIconGlyph = "info" | "warning" | "circles-check" | "exclamation-circle";
type CalloutToneForIcon = "info" | "success" | "warning" | "danger" | "neutral";
/** Maps `Callout` tone to the same cursor icons used by `@anysphere/ui` toasts. */
export declare const calloutToneIconGlyph: Record<Exclude<CalloutToneForIcon, "neutral">, CalloutToneIconGlyph>;
export declare function CalloutToneIcon({ tone, color }: {
tone: CalloutToneForIcon;
color: string;
}): JSX.Element;
export {};
//# sourceMappingURL=callout-tone-icons.d.ts.map