@onesy/ui-react
Version:
UI for React
14 lines (13 loc) • 327 B
TypeScript
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;