fumadocs-ui
Version:
The framework for building a documentation website in Next.js
13 lines • 476 B
TypeScript
import { type HTMLAttributes, type ReactNode } from 'react';
export declare const Callout: import("react").ForwardRefExoticComponent<Omit<HTMLAttributes<HTMLDivElement>, "title" | "type" | "icon"> & {
title?: ReactNode;
/**
* @defaultValue info
*/
type?: "info" | "warn" | "error" | "success" | "warning";
/**
* Force an icon
*/
icon?: ReactNode;
} & import("react").RefAttributes<HTMLDivElement>>;
//# sourceMappingURL=callout.d.ts.map