@open-tender/ui
Version:
A component library for use with the Open Tender web app
11 lines (10 loc) • 338 B
TypeScript
import React from 'react';
import { ScreenConfig, Styles } from '../types';
export interface ButtonLinkProps {
config: ScreenConfig;
onClick?: () => void;
children: string;
style?: Styles;
}
declare const ButtonLink: ({ config, onClick, children, style }: ButtonLinkProps) => React.JSX.Element;
export default ButtonLink;