UNPKG

@open-condo/ui

Version:

A set of React UI components for developing applications inside the condo ecosystem

14 lines 388 B
import React from 'react'; export type BannerProps = { title: string; subtitle: string; backgroundColor: string; actionText?: string; onClick?: React.MouseEventHandler<HTMLElement>; imgUrl?: string; invertText?: boolean; id?: string; size?: 'small' | 'medium'; }; export declare const Banner: React.FC<BannerProps>; //# sourceMappingURL=banner.d.ts.map