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