23 lines
566 B
JavaScript
23 lines
566 B
JavaScript
import { Tag, Popover } from "antd";
|
|
import React from "react";
|
|
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>
|
|
);
|
|
}
|