UNPKG

@freecodecamp/ui

Version:

The freeCodeCamp.org open-source UI components

7 lines (6 loc) 214 B
type CalloutVariant = "tip" | "note" | "warning" | "caution"; export interface CalloutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "role"> { label: string; variant: CalloutVariant; } export {};