UNPKG

@open-tender/ui

Version:

A component library for use with the Open Tender web app

11 lines (10 loc) 345 B
import React from 'react'; import { Handlers, ScreenConfig } from '../types'; export interface FavsButtonProps { config: ScreenConfig; handlers: Handlers; imageUrl: string | null; title: string; } declare const FavsButton: ({ config, handlers, imageUrl, title }: FavsButtonProps) => React.JSX.Element; export default FavsButton;