[icon] Use lightbulb
All checks were successful
CI / test (push) Successful in 1m21s
CI / deploy (push) Successful in 1m57s

This commit is contained in:
2026-06-28 14:13:18 -04:00
parent becaa8b511
commit ae7c8c9d7c
3 changed files with 3 additions and 3 deletions

View File

@ -55,7 +55,7 @@ function findSmartQueueButton(renderer) {
? btn.props.children
: [btn.props.children];
return children.some(
(child) => child.props && child.props.name === 'magic',
(child) => child.props && child.props.name === 'lightbulb_outline',
);
});
}

View File

@ -167,7 +167,7 @@ exports[`<PlaybackControls /> should render correctly 1`] = `
<Icon
data-qa-file="PlaybackControls"
data-qa-node="Icon"
name="magic"
name="lightbulb_outline"
type="material"
/>
<span

View File

@ -201,7 +201,7 @@ const PlaybackControls = () => {
className={`control${smartQueue ? ' control--active' : ''} tooltip`}
onClick={toggleSmartQueue}
>
<Icon name="magic" type="material" />
<Icon name="lightbulb_outline" type="material" />
<span className="tooltip__content">
<I18n path="playback_controls.smart_queue" />
</span>