@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
10 lines (9 loc) • 389 B
TypeScript
export type CalloutPropsType = React.PropsWithChildren<{
title?: string;
cta?: React.ReactNode;
illustrationUrl?: string;
variant: "warning" | "neutral" | "error";
className?: string;
}>;
export declare const Callout: ({ title, children, cta, variant, illustrationUrl, className, }: CalloutPropsType) => import("react/jsx-runtime").JSX.Element;
export default Callout;