"use client"; import React from "react"; import { cn } from "@/shared/utils/cn"; import { DOCS_TOKENS } from "./tokens"; type CalloutType = "info" | "warning" | "danger"; interface CalloutProps { type: CalloutType; title: string; children: React.ReactNode; className?: string; } export default function Callout({ type, title, children, className }: CalloutProps) { const theme = DOCS_TOKENS.colors[type]; return (