UNPKG

@amaui/ui-react

Version:
12 lines (11 loc) 322 B
import React from 'react'; import { ISection } from '../Section/Section'; import { IPropsAny } from '../types'; export interface ISectionAction extends ISection { text?: string; link?: string; to?: string; ButtonProps?: IPropsAny; } declare const Element: React.FC<ISectionAction>; export default Element;