diff --git a/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/sub-components/AuthorCell.js b/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/sub-components/AuthorCell.js index 1634925532..8acdfa16f0 100644 --- a/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/sub-components/AuthorCell.js +++ b/products/ASC.Files/Client/src/pages/Home/Section/Body/TableView/sub-components/AuthorCell.js @@ -1,18 +1,33 @@ import React from "react"; import Text from "@appserver/components/text"; +import styled from "styled-components"; -const AuthorCell = ({ fileOwner, sideColor }) => { +const StyledAuthorCell = styled.div` + display: flex; + + .author-avatar-cell { + width: 16px; + height: 16px; + margin-right: 8px; + border-radius: 20px; + } +`; + +const AuthorCell = ({ fileOwner, sideColor, item }) => { return ( - - {fileOwner} - + + + + {fileOwner} + + ); };