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