@aqua-ds/web-components
Version:
AquaDS Web Components
18 lines (16 loc) • 430 B
JavaScript
function Label(component) {
return {
get isLabelVisible() {
return component.label?.length > 0;
},
get bindsLabel() {
return {
info: component.info,
isRequired: component.isRequired,
isDisabled: component.isDisabled,
tooltipWidth: component.tooltipWidth,
};
},
};
}
export { Label as L };