import Mini from "../../app/components/cards/Mini"; import { getAssetPath, featurePanelPath } from "../../lib/assetUtils"; export default { title: "Components/Cards/Mini", component: Mini, parameters: { layout: "centered", }, argTypes: { backgroundColor: { control: "select", options: [ "bg-[var(--color-surface-default-brand-royal)]", "bg-[#D1FFE2]", "bg-[#F4CAFF]", "bg-[#CBDDFF]", ], }, labelLine1: { control: "text" }, labelLine2: { control: "text" }, panelContent: { control: "text" }, href: { control: "text" }, onClick: { action: "clicked" }, ariaLabel: { control: "text" }, }, }; export const Default = { args: { backgroundColor: "bg-[var(--color-surface-default-brand-royal)]", labelLine1: "Decision-making", labelLine2: "support", panelContent: getAssetPath(featurePanelPath("support")), }, }; export const ColorVariants = { render: () => (