Skip to content
This repository was archived by the owner on May 30, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ebay-svg/svg.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const EbaySvg: FC<EbaySvgProps> = ({ icons }: EbaySvgProps) => {
// Use position absolute and height/width 0px instead of display none
// so <defs> element for spectrum icons are shown
return (
<svg style={{ position: 'absolute', height: '0px', width: '0px' }}>
<svg style={{ position: 'absolute', height: '0px', width: '0px' }} focusable={false} aria-hidden="true">
{!iconIds ? symbols : symbols
.filter(({ props, type }) => type === 'defs' || iconIds.has(props.id))}
</svg>
Expand Down
Loading