@drivy/cobalt
Version:
Opinionated design system for Drivy's projects.
11 lines (10 loc) • 394 B
TypeScript
import React from "react";
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) => React.JSX.Element;
export default Callout;