UNPKG

@hashicorp/design-system-components

Version:
26 lines (22 loc) 898 B
import { hash } from '@ember/helper'; import HdsButton from '../button/index.js'; import HdsDropdown from '../dropdown/index.js'; import HdsLinkStandalone from '../link/standalone.js'; import { precompileTemplate } from '@ember/template-compilation'; import { setComponentTemplate } from '@ember/component'; import templateOnly from '@ember/component/template-only'; /** * Copyright IBM Corp. 2021, 2025 * SPDX-License-Identifier: MPL-2.0 */ const HdsApplicationStateFooter = setComponentTemplate(precompileTemplate("<div class=\"hds-application-state__footer\" ...attributes>\n {{yield (hash Button=HdsButton Dropdown=HdsDropdown LinkStandalone=HdsLinkStandalone)}}\n</div>", { strictMode: true, scope: () => ({ hash, HdsButton, HdsDropdown, HdsLinkStandalone }) }), templateOnly()); export { HdsApplicationStateFooter as default }; //# sourceMappingURL=footer.js.map