Skip to content
Snippets Groups Projects
Commit 82f23789 authored by ali asaria's avatar ali asaria
Browse files

fix file icon in document sotre

parent b8506803
No related branches found
No related tags found
No related merge requests found
...@@ -234,7 +234,11 @@ export default function Documents({ ...@@ -234,7 +234,11 @@ export default function Documents({
/> />
</td> */} </td> */}
<td style={{ paddingLeft: '1rem' }}> <td style={{ paddingLeft: '1rem' }}>
<Typography level="body-xs" sx={{}}> <Typography
level="body-xs"
sx={{ display: 'flex', alignItems: 'center' }}
>
<FileTextIcon size="16px" style={{ marginRight: '0.5rem' }} />
{row?.name} {row?.name}
</Typography> </Typography>
</td> </td>
...@@ -267,11 +271,7 @@ export default function Documents({ ...@@ -267,11 +271,7 @@ export default function Documents({
</td> </td>
<td> <td>
{row?.size && ( {row?.size && (
<Typography <Typography level="body-xs" color="neutral">
level="body-xs"
sx={{ display: 'flex', alignItems: 'center' }}
>
<FileTextIcon size="16px" style={{ marginRight: '0.5rem' }} />
{formatBytes(row?.size)} {formatBytes(row?.size)}
</Typography> </Typography>
)} )}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment