From 0b111123797a5063f1a00ff14f2ce3865e6b8c80 Mon Sep 17 00:00:00 2001 From: Yannick Nana Date: Fri, 17 Jun 2022 14:22:39 +0200 Subject: [PATCH] fix: remove duplicate class in button example --- src/app/showcase/components/button/buttondemo.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/showcase/components/button/buttondemo.html b/src/app/showcase/components/button/buttondemo.html index 5caee551aa4..90fcd73dad2 100755 --- a/src/app/showcase/components/button/buttondemo.html +++ b/src/app/showcase/components/button/buttondemo.html @@ -231,7 +231,7 @@
Text Buttons
<button pButton type="button" label="Submit" class="p-button-text"></button> <button pButton type="button" icon="pi pi-check" class="p-button-text"></button> <button pButton type="button" label="Cancel" icon="pi pi-times" class="p-button-text"></button> -<button pButton type="button" label="Search" icon="pi pi-search" iconPos="right" class="p-button-text p-button-text"></button> +<button pButton type="button" label="Search" icon="pi pi-search" iconPos="right" class="p-button-text"></button>
Raised and Rounded Buttons

A button can be raised by having "p-button-raised" style class and similarly borders can be made rounded using "p-button-rounded" class.