We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 225f68e commit d921993Copy full SHA for d921993
src/elements/common/header/Logo.tsx
@@ -16,7 +16,11 @@ interface LogoProps {
16
17
function getLogo(url?: string): React.ReactNode {
18
if (url === 'box') {
19
- return <IconLogo aria-label="Box logo" role="img" />;
+ return (
20
+ <span role="img" aria-label="Box logo">
21
+ <IconLogo />
22
+ </span>
23
+ );
24
}
25
if (typeof url === 'string') {
26
return <img alt="Logo" aria-label="Custom logo" className="be-logo-custom" src={url} />;
0 commit comments