Files
bodyshop/client/src/components/barcode-popup/barcode-popup.component.jsx
2025-08-19 16:23:29 -04:00

15 lines
459 B
JavaScript

import { Popover, Tag } from "antd";
import Barcode from "react-barcode";
import { useTranslation } from "react-i18next";
export default function BarcodePopupComponent({ value, children }) {
const { t } = useTranslation();
return (
<div>
<Popover content={<Barcode value={value || ""} background="transparent" displayValue={false} />}>
{children ? children : <Tag>{t("general.labels.barcode")}</Tag>}
</Popover>
</div>
);
}