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

This is the first paragraph of text. This is the first paragraph of text. This is the first paragraph of text. This is the first paragraph of text.


This is the second paragraph of text. This is the second paragraph of text. This is the second paragraph of text. This is the second paragraph of text.

`, };