UNPKG

@drivy/cobalt

Version:

Opinionated design system for Drivy's projects.

12 lines (11 loc) 449 B
import React from "react"; export type BannerPropsType = React.PropsWithChildren<{ title?: string; cta?: React.ReactNode; illustrationUrl?: string; illustrationHeight?: number; variant: "secondary" | "tertiary" | "business"; className?: string; }>; export declare const Banner: ({ title, children, cta, variant, illustrationUrl, illustrationHeight, className, }: BannerPropsType) => React.JSX.Element; export default Banner;