mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 08:45:06 -04:00
24 lines
492 B
TypeScript
24 lines
492 B
TypeScript
![]() |
import { createHTMLElement } from "../HTMLElement";
|
||
|
|
||
|
export default {
|
||
|
title: "Forms/Form",
|
||
|
tags: ["autodocs"],
|
||
|
args: {
|
||
|
content: "Content",
|
||
|
"accept-charset": "UTF-8",
|
||
|
name: "name",
|
||
|
rel: "noopener",
|
||
|
action: "action",
|
||
|
enctype: "application/x-www-form-urlencoded",
|
||
|
method: "get",
|
||
|
novalidate: false,
|
||
|
target: "_self",
|
||
|
},
|
||
|
// Render the <html> element
|
||
|
render: (args) => {
|
||
|
return createHTMLElement("form", args);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const Default = {};
|