UNPKG

@keycloakify/keycloak-admin-ui

Version:
13 lines 990 B
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime"; import { useTranslation } from "react-i18next"; import { DataListItem, DataListItemRow, DataListDragButton, DataListItemCells, DataListCell, } from "@patternfly/react-core"; import "./flow-header.css"; export const FlowHeader = () => { const { t } = useTranslation(); return (_jsx(DataListItem, { "aria-labelledby": "headerName", id: "header", children: _jsxs(DataListItemRow, { children: [_jsx(DataListDragButton, { className: "keycloak__authentication__header-drag-button", "aria-label": t("disabled") }), _jsx(DataListItemCells, { className: "keycloak__authentication__header", dataListCells: [ _jsx(DataListCell, { id: "headerName", children: t("steps") }, "step"), _jsx(DataListCell, { children: t("requirement") }, "requirement"), _jsx(DataListCell, {}, "config"), ] })] }) })); }; //# sourceMappingURL=FlowHeader.js.map