UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

11 lines (10 loc) 304 B
import { MenuItemTag } from '@open-tender/types'; import React from 'react'; import { ScreenConfig } from '../types'; export interface TagProps { config: ScreenConfig; tag: MenuItemTag; size?: number; } declare const Tag: ({ config, tag }: TagProps) => React.JSX.Element; export default Tag;