From e1195a92c07c3eedffd394ce878c4116b06a40e5 Mon Sep 17 00:00:00 2001 From: Material Web Team Date: Fri, 21 Aug 2026 12:13:44 -0700 Subject: [PATCH] fix(labs): add pointer cursor to enabled iconbutton PiperOrigin-RevId: 968625645 --- labs/gb/components/iconbutton/icon-button.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/labs/gb/components/iconbutton/icon-button.scss b/labs/gb/components/iconbutton/icon-button.scss index f0a4047fd3..8723e8b6da 100644 --- a/labs/gb/components/iconbutton/icon-button.scss +++ b/labs/gb/components/iconbutton/icon-button.scss @@ -152,5 +152,9 @@ &:is(.icon-btn-narrow, .icon-btn-wide) { padding-inline: var(--leading-space) var(--trailing-space); } + + &:not(:disabled, .disabled) { + cursor: pointer; + } } }