Skip to content

Commit cc33278

Browse files
committed
fix auto-sized logo sizes
1 parent 0cbc131 commit cc33278

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

lib/logos.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,13 @@ function getSimpleIcon({ name, color, style, size }) {
9393
if (size === 'auto') {
9494
const { width: iconWidth, height: iconHeight } = getIconSize(key)
9595

96-
if (iconWidth > iconHeight) {
96+
if (iconWidth !== iconHeight) {
9797
const path = resetIconPosition(simpleIcons[key].path)
9898
iconSvg = iconSvg
99-
.replace('viewBox="0 0 24 24"', `viewBox="0 0 24 ${iconHeight}"`)
99+
.replace(
100+
'viewBox="0 0 24 24"',
101+
`viewBox="0 0 ${iconWidth} ${iconHeight}"`,
102+
)
100103
.replace(/<path d=".*"\/>/, `<path d="${path}"/>`)
101104
}
102105
}

0 commit comments

Comments
 (0)