/* This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ import { html, ifDefined } from "../vendor/lit.all.mjs"; import "./moz-breadcrumb-group.mjs"; export default { title: "UI Widgets/Breadcrumb Group", component: "moz-breadcrumbs-group", parameters: { status: "in-development", fluent: ` moz-breadcrumb-first = .label = First page moz-breadcrumb-second = .label = Previous page moz-breadcrumb-third = .label = Current page `, }, }; const Template = ({ l10nId, width, slot }) => { return html` `; }; export const Default = Template.bind({}); Default.args = { l10nId: "moz-breadcrumb", }; export const NarrowWidth = Template.bind({}); NarrowWidth.args = { ...Default.args, width: 180, };