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 6d583ec commit 2fefd91Copy full SHA for 2fefd91
site/src/components/Abbr/Abbr.tsx
@@ -30,7 +30,12 @@ export const Abbr: FC<AbbrProps> = ({
30
// always have to supplement with aria-label
31
title={title}
32
aria-label={getAccessibleLabel(children, title, pronunciation)}
33
- className={cn("decoration-inherit", children === children.toUpperCase() ? "tracking-wide" : "tracking-normal")}
+ className={cn(
34
+ "decoration-inherit",
35
+ children === children.toUpperCase()
36
+ ? "tracking-wide"
37
+ : "tracking-normal",
38
+ )}
39
{...delegatedProps}
40
>
41
<span aria-hidden>{children}</span>
0 commit comments