import { createHTMLElement } from "../HTMLElement"; export default { title: "TextContent/DT", tags: ["autodocs"], args: { content: "Content", }, // Render the element render: (args) => { return createHTMLElement("dt", args); }, }; export const Default = {}; export const MozillaExample = { render: () => `

Please use the following paint colors for the new house:

Denim (semigloss finish)
Ceiling
Denim (eggshell finish)
Evening Sky (eggshell finish)
Layered on the walls
`, };