mirror of
https://github.com/picocss/pico.git
synced 2025-04-26 11:16:15 -04:00
18 lines
343 B
TypeScript
18 lines
343 B
TypeScript
import { createHTMLElement } from "../HTMLElement";
|
|
|
|
export default {
|
|
title: "Forms/Output",
|
|
tags: ["autodocs"],
|
|
args: {
|
|
content: "Content",
|
|
for: "for",
|
|
form: "form",
|
|
name: "name",
|
|
},
|
|
// Render the <html> element
|
|
render: (args) => {
|
|
return createHTMLElement("output", args);
|
|
},
|
|
};
|
|
|
|
export const Default = {};
|