UNPKG

@freecodecamp/ui

Version:

The freeCodeCamp.org open-source UI components

6 lines (5 loc) 198 B
type CalloutVariant = "success" | "info" | "warning" | "danger"; export interface CalloutProps extends Omit<React.HTMLAttributes<HTMLDivElement>, "role"> { variant: CalloutVariant; } export {};