-
Notifications
You must be signed in to change notification settings - Fork 0
/
option.ts
45 lines (43 loc) · 1.73 KB
/
option.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
36
37
38
39
40
41
42
43
44
45
/**
* @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";
/**
* OptionElementProps are the props for the [`option`](https://developer.mozilla.org/docs/Web/HTML/Element/option) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/option>
*/
export interface OptionElementProps extends GlobalAttributes {
/**
* `disabled` is an attribute of the [`option`](https://developer.mozilla.org/docs/Web/HTML/Element/option) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/option#disabled>
*/
disabled?: string | undefined;
/**
* `label` is an attribute of the [`option`](https://developer.mozilla.org/docs/Web/HTML/Element/option) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/option#label>
*/
label?: string | undefined;
/**
* `selected` is an attribute of the [`option`](https://developer.mozilla.org/docs/Web/HTML/Element/option) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/option#selected>
*/
selected?: string | undefined;
/**
* `value` is an attribute of the [`option`](https://developer.mozilla.org/docs/Web/HTML/Element/option) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/option#value>
*/
value?: string | undefined;
}
/**
* option renders the [`option`](https://developer.mozilla.org/docs/Web/HTML/Element/option) element.
* @see <https://developer.mozilla.org/docs/Web/HTML/Element/option>
*/
export function option(
props?: OptionElementProps,
...children: string[]
): string {
return renderElement("option", props as AnyProps, false, children);
}