spelling: avatar

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref
2023-06-19 01:36:48 -04:00
parent e214b86a62
commit 2c9739ac91
5 changed files with 8 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
// @ts-nocheck
import React from 'react';
import { firstLettersArgs } from '@/utils';
export default function AvatarCell({ row: { original }, size }) {
return (
<span className="avatar" data-size={size}>
{firstLettersArgs(original?.display_name)}
</span>
);
}