Ownable Install
Install Label from the TailNG registry with the shadcn-like flow. This copies source files into your app so your team can own and evolve the implementation locally.
Install from registry
Run from your Angular workspace root.
pnpm
pnpm dlx tailng add labelnpx
npx tailng add labelGenerated files
The command scaffolds local files under src/app/tailng-ui/label.
src/app/tailng-ui/label/tng-label-primitive.tssrc/app/tailng-ui/label/tng-label.tssrc/app/tailng-ui/label/tng-label.htmlsrc/app/tailng-ui/label/tng-label.csssrc/app/tailng-ui/label/index.ts
Import in your feature module/component
Imports
import { TngLabel, TngLabelPrimitive } from './tailng-ui/label';
Usage
Template usage
<tng-label forId="workspace-name" [required]="true">
Workspace name
</tng-label>
<input id="workspace-name" type="text" required />