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