UNPKG

@onesy/ui-react

Version:
14 lines (13 loc) 327 B
import React from 'react'; import { IBaseElement, IElement } from '../types'; export type IBanner = IBaseElement & { maxWidth?: string | number; actions?: IElement; start?: any; end?: any; footer?: any; line?: any; RootProps?: any; }; declare const Banner: React.FC<IBanner>; export default Banner;