picocss/stories/scripting/canvas.stories.ts
2025-04-04 11:51:33 +02:00

17 lines
328 B
TypeScript

import { createHTMLElement } from "../HTMLElement";
export default {
title: "Scripting/Canvas",
tags: ["autodocs"],
args: {
content: "Content",
height: 100,
width: 100,
},
// Render the <html> element
render: (args) => {
return createHTMLElement("canvas", args);
},
};
export const Default = {};