mirror of
https://github.com/woodchen-ink/certimate.git
synced 2025-07-18 17:31:55 +08:00
18 lines
456 B
TypeScript
18 lines
456 B
TypeScript
import { useTranslation } from "react-i18next";
|
|
import { Typography } from "antd";
|
|
|
|
const EndNode = () => {
|
|
const { t } = useTranslation();
|
|
|
|
return (
|
|
<div className="flex flex-col items-center">
|
|
<div className="size-[20px] rounded-full bg-stone-400"></div>
|
|
<div className="mt-2 text-sm">
|
|
<Typography.Text type="secondary">{t("workflow_node.end.label")}</Typography.Text>
|
|
</div>
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default EndNode;
|