UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

10 lines (9 loc) 306 B
import React from "react"; export interface CalloutProps { children: React.ReactNode; title?: string; status: "info" | "error" | "success"; close?: () => void; } export declare const Callout: ({ title, children, status, close, }: CalloutProps) => React.JSX.Element; export default Callout;