diff --git a/.changeset/swift-lizards-bathe.md b/.changeset/swift-lizards-bathe.md new file mode 100644 index 0000000000..f70155a1ea --- /dev/null +++ b/.changeset/swift-lizards-bathe.md @@ -0,0 +1,7 @@ +--- +'@backstage/ui': patch +--- + +Fixed the ButtonIcon's loading spinner animation + +**Affected components:** ButtonIcon diff --git a/packages/ui/src/components/ButtonIcon/ButtonIcon.module.css b/packages/ui/src/components/ButtonIcon/ButtonIcon.module.css index 657b143ed5..8a345647c5 100644 --- a/packages/ui/src/components/ButtonIcon/ButtonIcon.module.css +++ b/packages/ui/src/components/ButtonIcon/ButtonIcon.module.css @@ -219,4 +219,14 @@ animation: none; } } + + @keyframes bui-spin { + from { + transform: rotate(0deg); + } + + to { + transform: rotate(360deg); + } + } }