mirror of
https://github.com/picocss/pico.git
synced 2025-04-25 10:46:14 -04:00
16 lines
316 B
TypeScript
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 = {};
|