@open-tender/ui
Version:
A component library for use with the Open Tender web app
12 lines (11 loc) • 389 B
TypeScript
import React from 'react';
import { ElementAs, Styles } from '../types';
declare const View: ({ className, classes, style, children, as, onClick }: {
className: string;
classes?: string | undefined;
style?: Styles | undefined;
children?: React.ReactNode;
as?: ElementAs | undefined;
onClick?: (() => void) | undefined;
}) => React.JSX.Element;
export default View;