Open In App

Angular PrimeNG Button Outlined Buttons Component

Angular PrimeNG is an open-source front-end UI library that has many native Angular UI components which help developers to build a fast and scalable web solution. In this article, we will see Angular PrimeNG Button Outlined Buttons Component.

A Button component is used for carrying out some action when clicked. The Outlined Button has an outline around the inner text of the button. Outlined buttons are used for more emphasis than a text or link button and less emphasis than a filled button.



Angular PrimeNG Button Outlined Buttons Component Properties:

Angular PrimeNG Button Outlined Buttons Component Styling:



Syntax:

<button 
    pButton type="button" 
    label="Primary" 
    class="p-button-outlined">
</button>

Creating Angular Application and Installing the Module:

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: Finally, Install PrimeNG in your given directory.

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

The project Structure will look like this after following the above steps:

Project Structure

Run the below command to see the output.

ng serve --open

Example 1: This example shows the use of the p-button-outlined class to create a simple outlined button.




<div class="header">
    <h2>GeeksforGeeks</h2>
    <h3>
        Angular PrimeNG Button 
        Outlined Buttons Component
    </h3>
</div>
  
<div class="buttons">
    <button
        pButton
        type="button"
        label="Outlined Button 1"
        class="p-button-outlined">
    </button>
  
    <button
        pButton
        type="button"
        label="Outlined Button 2"
        class="p-button-outlined">
    </button>
</div>




div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
  
.header h2{
    margin-bottom: 0;
    color: green;
}
  
button{
    margin-bottom: 10px;
}




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




import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
  
import { AppComponent } from './app.component';
import {ButtonModule} from 'primeng/button'
  
@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        ButtonModule,
    ],
    providers: [],
    bootstrap: [AppComponent]
})
export class AppModule { }

Output:

 

Example 2: In this example, we used the icon property to set the icon for the outlined button.




<div class="header">
    <h2>GeeksforGeeks</h2>
    <h3>
        Angular PrimeNG Button 
        Outlined Buttons Component
    </h3>
</div>
  
<div class="buttons">
    <button pButton 
        type="button" 
        icon="pi pi-check" 
        label="Outlined Button with Icon" 
        class="p-button-outlined">
    </button>
  
    <button pButton 
        type="button" 
        icon="pi pi-hashtag" 
        label="Outlined Button with Icon" 
        class="p-button-outlined">
    </button>
  
</div>




div{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
  
.header h2{
    margin-bottom: 0;
    color: green;
}
  
button{
    margin-bottom: 10px;
}




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




import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
  
import { AppComponent } from './app.component';
import {ButtonModule} from 'primeng/button'
  
@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        ButtonModule,
    ],
    providers: [],
    bootstrap: [AppComponent]
})
export class AppModule { }

Output:

 

Reference: http://primefaces.org/primeng/button


Article Tags :