import { createHTMLElement } from "../HTMLElement";
export default {
title: "TextContent/DL",
tags: ["autodocs"],
args: {
content: "Content",
},
// Render the element
render: (args) => {
return createHTMLElement("dl", args);
},
};
export const Default = {};
export const MozillaExample = {
render: () => `
- Firefox
-
A free, open source, cross-platform, graphical web browser developed by the
Mozilla Corporation and hundreds of volunteers.
`,
};
export const MozillaExampleMultipleTermsSingleDescription = {
render: () => `
- Firefox
- Mozilla Firefox
- Fx
-
A free, open source, cross-platform, graphical web browser developed by the
Mozilla Corporation and hundreds of volunteers.
`,
};
export const MozillaExampleSingleTermMultipleDescriptions = {
render: () => `
- Firefox
-
A free, open source, cross-platform, graphical web browser developed by the
Mozilla Corporation and hundreds of volunteers.
-
The Red Panda also known as the Lesser Panda, Wah, Bear Cat or Firefox, is a
mostly herbivorous mammal, slightly larger than a domestic cat (60 cm long).
`,
};
export const MozillaExampleMultipleTermsAndDescriptions = {
render: () => `
- Name
- Godzilla
- Born
- 1952
- Birthplace
- Japan
- Color
- Green
`,
};