@neu-ui/web-components
Version:
A Neumorphic web component library built with @microsoft/fast-element and Vite using javascript
17 lines (16 loc) • 488 B
JavaScript
import { styles as e } from "./label.styles.es.js";
import { template as t } from "./label.template.es.js";
const i = {
name: "neu-label",
template: t,
styles: e,
attributes: [
{ attribute: "disabled", property: "disabled", mode: "boolean" },
{ attribute: "required", property: "required", mode: "boolean" },
{ attribute: "for", property: "for", mode: "reflect" },
{ attribute: "size", property: "size", mode: "reflect" }
]
};
export {
i as LabelDefinition
};