UNPKG

@edancerys/ts-react-components-lib

Version:
13 lines (12 loc) 419 B
import React, { ReactNode } from 'react'; export interface HomeBannerProps { backgroundColor?: string; maxWidth?: string; minHeight?: string; children?: ReactNode; onClick?: (event?: React.MouseEvent) => void; onChange?: (param?: any) => void; onClear?: (param?: any) => void; onSelected?: (param?: any) => void; } export declare const HomeBanner: React.FC<HomeBannerProps>;