import React from "react"; import { Card as Component } from "."; import { theme, styled } from "../theme"; import { Button } from "../button"; import { Accordion, ACCORDION_TYPE } from "../accordion"; import type { ComponentStory, ComponentMeta } from "@storybook/react"; export default { title: "Card", component: Component, } as ComponentMeta; const Stack = styled("section", { display: "flex", flexDirection: "column", gap: "$100", marginBlockStart: "$200", borderRadius: "$075", }); const Label = styled("h3", { color: theme.colors.primary, margin: 0, textAlign: "center", }); const DefaultTemplate: ComponentStory = (args) => (

Hello there! I am a card

I can support many different nested components, check out my other stories to see for yourself!

Lava pooling from a volcano
); export const Card = DefaultTemplate.bind({}); const StyledText = styled("p", { overflow: "wrap", width: "100px", }); const Container = styled("div", { padding: theme.space["100"], }); const OptionsT = ( // eslint-disable-next-line @typescript-eslint/no-unused-vars args ) => ( Brand new digital content free with subscription! Vibrant quinoa bowl with carrots, tomatoes, and cucumbers How Saria makes ready-to-eat quinoa bowls with lots of veggies.

Weeknight Ramen Bowls

View the recipe Step 1 Add one cup of water to a medium pot and bring to a boil. Add the coconut milk, noodles, green beans and peanut butter, if using, and cook, stirring now and then, for about 3 minutes. Step 2 Remove from the heat and add the curry powder and half of the spice mix from the ramen packet and stir until fully dissolved, about 1 minute. (Discard the remaining spice mix.) Transfer the ramen and its broth to a large bowl and place the cheese on top. Dust with more curry powder and serve.
); export const Options = OptionsT.bind({});