Full tests coverage
This commit is contained in:
parent
99134d8556
commit
02d782c3da
157 changed files with 1074 additions and 34670 deletions
|
|
@ -4,7 +4,7 @@ interface AvatarProps {
|
|||
}
|
||||
|
||||
export function Avatar({ name, size = 32 }: AvatarProps) {
|
||||
const initial = (name.charAt(0) ?? '?').toUpperCase();
|
||||
const initial = (name.charAt(0) || '?').toUpperCase();
|
||||
return (
|
||||
<div
|
||||
aria-label={name}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue