/* 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 } from "lit"; import "mail/themes/shared/mail/spacings.css"; import "mail/themes/shared/mail/colors.css"; import "mail/themes/shared/mail/variables.css"; import "mail/themes/shared/mail/widgets.css"; import "mail/components/accountcreation/content/widgets/account-hub-radio-card-large.mjs"; export default { title: "Widgets/Account Hub/Radio Card Large", component: "account-hub-radio-card-large", tags: ["autodocs"], }; const AccountHubRadioCardLargeTemplate = ({ title, description, tag }) => html`
`; export const AccountHubRadioCardLarge = AccountHubRadioCardLargeTemplate.bind( {} ); AccountHubRadioCardLarge.args = { title: "Title", description: "Description", tag: "Recommended", };