mirror of
https://github.com/picocss/pico.git
synced 2025-04-25 02:36:15 -04:00
17 lines
336 B
TypeScript
17 lines
336 B
TypeScript
import { createHTMLElement } from "../HTMLElement";
|
|
|
|
export default {
|
|
title: "Forms/Optgroup",
|
|
tags: ["autodocs"],
|
|
args: {
|
|
content: "Content",
|
|
label: "Label",
|
|
disabled: false,
|
|
},
|
|
// Render the <html> element
|
|
render: (args) => {
|
|
return createHTMLElement("optgroup", args);
|
|
},
|
|
};
|
|
|
|
export const Default = {};
|