@shopgate/engage
Version:
Shopgate's ENGAGE library.
17 lines (16 loc) • 513 B
JavaScript
import React from 'react';
import { i18n } from '@shopgate/engage/core/helpers';
import { container } from "./FulfillmentSelectorHeader.style";
/**
* Renders the fulfillment selector title.
* @returns {JSX.Element}
*/
import { jsx as _jsx } from "react/jsx-runtime";
export const FulfillmentSelectorHeader = () =>
/*#__PURE__*/
// eslint-disable-next-line jsx-a11y/role-has-required-aria-props
_jsx("div", {
role: "heading",
className: container,
children: i18n.text('locations.fulfillment.heading')
});