@onesy/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 declare type ISectionAction = ISection & {
text?: string;
link?: string;
to?: string;
ButtonProps?: IPropsAny;
};
declare const Element: React.FC<ISectionAction>;
export default Element;