picocss/stories/svg-and-mathml/math.stories.ts
2025-04-04 11:51:33 +02:00

16 lines
316 B
TypeScript

import { createHTMLElement } from "../HTMLElement";
export default {
title: "SvgAndMathML/Math",
tags: ["autodocs"],
args: {
content: "Content",
display: "block",
},
// Render the <html> element
render: (args) => {
return createHTMLElement("math", args);
},
};
export const Default = {};