-
Notifications
You must be signed in to change notification settings - Fork 0
/
optgroup.ts
35 lines (33 loc) · 1.29 KB
/
optgroup.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/**
* @fileoverview
*
* This file was generated. Do not modify this file directly.
*/
import type { AnyProps, GlobalAttributes } from "./lib/mod.ts";
import { renderElement } from "./lib/mod.ts";
/**
* OptgroupElementProps are the props for the [`optgroup`](https://developer.mozilla.org/docs/Web/HTML/Element/optgroup) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/optgroup>
*/
export interface OptgroupElementProps extends GlobalAttributes {
/**
* `disabled` is an attribute of the [`optgroup`](https://developer.mozilla.org/docs/Web/HTML/Element/optgroup) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/optgroup#disabled>
*/
disabled?: string | undefined;
/**
* `label` is an attribute of the [`optgroup`](https://developer.mozilla.org/docs/Web/HTML/Element/optgroup) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/optgroup#label>
*/
label?: string | undefined;
}
/**
* optgroup renders the [`optgroup`](https://developer.mozilla.org/docs/Web/HTML/Element/optgroup) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/optgroup>
*/
export function optgroup(
props?: OptgroupElementProps,
...children: string[]
): string {
return renderElement("optgroup", props as AnyProps, false, children);
}