Android_Retail/src/Pages/BookingScreen/Components/UtillComponents/BSMobilePrintSettings.jsx

27 lines
587 B
React
Raw Normal View History

2026-01-27 18:27:29 +05:30
import { FiSettings } from 'react-icons/fi';
const BSMobilePrintSettings = () => {
const ListPrinters = () => {
var receiptText = '';
var TypeCheck = 'WifiList';
var textEncoded = encodeURI(receiptText);
var scheme = 'pozoprinter';
var packageName = 'com.example.pozoprinter';
window.location.href =
scheme +
'://' +
textEncoded +
'#Intent;scheme=' +
scheme +
';package=' +
packageName +
TypeCheck +
';end;';
};
return <FiSettings onClick={ListPrinters} />;
};
export default BSMobilePrintSettings;