import MiniCard from "../app/components/cards/MiniCard"; export default { title: "Components/MiniCard", component: MiniCard, 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: "assets/Feature_Support.png", }, }; export const ColorVariants = { render: () => (