@open-tender/ui
Version:
A component library for use with the Open Tender web app
14 lines (13 loc) • 527 B
TypeScript
import { CartItemGroup } from '@open-tender/types';
import { useModifier } from '@open-tender/utils';
import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface ItemOptionSelectedProps {
config: ScreenConfig;
handlers: Handlers;
group: CartItemGroup;
option: ReturnType<typeof useModifier>;
apiUrl: string;
}
declare const ItemOptionSelected: ({ config, handlers, group, option, apiUrl }: ItemOptionSelectedProps) => React.JSX.Element;
export default ItemOptionSelected;