@open-tender/ui
Version:
A component library for use with the Open Tender web app
12 lines (11 loc) • 350 B
TypeScript
import React from 'react';
import { ScreenConfig, Styles } from '../types';
export interface AppliedProps {
config: ScreenConfig;
title?: string;
size?: number;
strokeWidth?: number;
style?: Styles;
}
declare const Applied: ({ config, title, size, strokeWidth, style }: AppliedProps) => React.JSX.Element;
export default Applied;