@open-tender/ui
Version:
A component library for use with the Open Tender web app
12 lines (11 loc) • 378 B
TypeScript
import React from 'react';
import { ScreenConfig } from '../types';
export interface NutritionalInfoLineProps {
config: ScreenConfig;
label: string;
value: number;
unit: string;
isLast?: boolean;
}
declare const NutritionalInfoLine: ({ config, label, value, unit, isLast }: NutritionalInfoLineProps) => React.JSX.Element;
export default NutritionalInfoLine;