Open In App

Angular PrimeNG Tags

Last Updated : 18 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

Angular PrimeNG is an open-source framework with a rich set of native Angular UI components that are used for great styling and this framework is used to make responsive websites with very much ease. In this article, we will see how to use the Tags in Angular PrimeNG.

A tag component is used to make a tag in order to categorize the content. There are various colors that are used for tags to distinguish between the different severity levels for the corresponding colors. For instance, the green color denotes success, red denotes danger, yellow denotes the warning, and the blue color can either be used to denote the primary actions or denotes some information.

Angular PrimeNG Tags Properties:

  • value: It specifies the value to display inside the tag. It is of string data type, the default value is null.
  • severity: It specifies the severity type of the tag. It is of string data type, the default value is null.
  • styleClass: It defines the style class of the component. It is of string data type, the default value is null.

Syntax:

<p-tag 
    styleClass="...."
    severity="...." 
    value="....">
</p-tag>

Creating Angular application & module installation:

Step 1: Create an Angular application using the following command.

ng new appname

Step 2: After creating your project folder i.e. appname, move to it using the following command.

cd appname

Step 3: Install PrimeNG in your given directory.

npm install primeng --save
npm install primeicons --save

Project Structure: After complete installation, it will look like the following:

Project Structure

  • Run the below command:
ng serve --open

Example 1: Below is the example that illustrates the use of Angular PrimeNG Tags.

app.component.html




<div style="text-align: center">
    <h2 style="color: green">GeeksforGeeks</h2>
    <h5>Angular PrimeNG Tags</h5>
    <p-tag styleClass="p-mr-3" 
           value="Primary Tags"
     </p-tag>
    <p-tag severity="success" 
           value="Success Tags"
     </p-tag>
</div>


app.component.ts




import { Component } from "@angular/core";
  
@Component({
  selector: "app-root",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.scss"],
})
export class AppComponent {}


app.module.ts




import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { TagModule } from "primeng/tag";
  
@NgModule({
  imports: [BrowserModule, 
              BrowserAnimationsModule, 
              TagModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}


Output:

 

Example 2: Below is another example that illustrates the use of Angular PrimeNG Tags.

app.component.html




<div style="text-align: center">
    <h2 style="color: green">GeeksforGeeks</h2>
    <h5>Angular PrimeNG Tags</h5>
    <p-tag styleClass="p-mr-3" 
           severity="info" 
           value="Info Tags"
    </p-tag>
    <p-tag styleClass="p-mr-3" 
           severity="warning" 
           value="Warning Tags"
    </p-tag>
    <p-tag severity="danger" 
           value="Danger Tags"
    </p-tag>
</div>


app.component.ts




import { Component } from "@angular/core";
  
@Component({
  selector: "app-root",
  templateUrl: "./app.component.html",
  styleUrls: ["./app.component.scss"],
})
export class AppComponent {}


app.module.ts




import { NgModule } from "@angular/core";
import { BrowserModule } from "@angular/platform-browser";
import { BrowserAnimationsModule } 
    from "@angular/platform-browser/animations";
import { AppComponent } from "./app.component";
import { TagModule } from "primeng/tag";
  
@NgModule({
  imports: [BrowserModule, 
              BrowserAnimationsModule, 
              TagModule],
  declarations: [AppComponent],
  bootstrap: [AppComponent],
})
export class AppModule {}


Output:

 

Reference: https://primefaces.org/primeng/tag



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads