NbLabel is a lightweight label element for associating descriptive text with form controls. Use it standalone or let NbTextInput manage it automatically.
Basic Usage
vue
<template>
<NbLabel for="my-input">Workspace name</NbLabel>
<input id="my-input" type="text" placeholder="my-workspace" />
</template>