@amaui/ui-react
Version:
UI for React
12 lines (11 loc) • 322 B
TypeScript
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;