1
0
Fork 0
VaultUI/src/elements/Option.ts
2021-05-09 16:02:04 +01:00

12 lines
242 B
TypeScript

import { makeElement } from "../htmlUtils";
export function Option(label: string, value: string): HTMLElement {
return makeElement({
tag: "option",
text: label,
attributes: {
label: label,
value: value,
}
})
}