mirror of
https://github.com/picocss/pico.git
synced 2025-04-20 08:45:06 -04:00
19 lines
352 B
TypeScript
19 lines
352 B
TypeScript
![]() |
import { createHTMLElement } from "../HTMLElement";
|
||
|
|
||
|
export default {
|
||
|
title: "Forms/Fieldset",
|
||
|
tags: ["autodocs"],
|
||
|
args: {
|
||
|
content: "Content",
|
||
|
disabled: false,
|
||
|
form: "form",
|
||
|
name: "name",
|
||
|
},
|
||
|
// Render the <html> element
|
||
|
render: (args) => {
|
||
|
return createHTMLElement("fieldset", args);
|
||
|
},
|
||
|
};
|
||
|
|
||
|
export const Default = {};
|