Use Unicode aware character-wise slicing (#159)
This commit is contained in:
committed by
GitHub
parent
2c9e32b6c4
commit
6e9394ec7a
@@ -29,7 +29,7 @@ function Avatar({
|
||||
{
|
||||
iconSrc !== null
|
||||
? <RawIcon size={size} src={iconSrc} />
|
||||
: text !== null && <Text variant={textSize}>{text}</Text>
|
||||
: text !== null && <Text variant={textSize}>{[...text][0]}</Text>
|
||||
}
|
||||
</span>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user