From fd72800e1b7fea35320dffd66cdbc475b227e9c2 Mon Sep 17 00:00:00 2001
From: Luis Felipe Risch <lfr20@inf.ufpr.br>
Date: Thu, 28 Jan 2021 15:41:30 -0300
Subject: [PATCH] Removed unecessary icons

---
 src/Components/ExpandedMaterialCard.js | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/src/Components/ExpandedMaterialCard.js b/src/Components/ExpandedMaterialCard.js
index 120cdfa3..f958a17e 100644
--- a/src/Components/ExpandedMaterialCard.js
+++ b/src/Components/ExpandedMaterialCard.js
@@ -23,8 +23,6 @@ import CardActions from '@material-ui/core/CardActions';
 import Typography from '@material-ui/core/Typography';
 import styled from 'styled-components';
 import Button from '@material-ui/core/Button';
-import ExpandMoreRoundedIcon from '@material-ui/icons/ExpandMoreRounded';
-import ExpandLessRoundedIcon from '@material-ui/icons/ExpandLessRounded';
 
 export default function MaterialCard(props) {
 
@@ -43,9 +41,7 @@ export default function MaterialCard(props) {
             <CardActions style={{ borderTop: "1px solid #e5e5e5", justifyContent: "center" }}>
                 <Button
                     color="secondary"
-                    endIcon={expanded ? <ExpandLessRoundedIcon /> : <ExpandMoreRoundedIcon />}
                 >
-
                     Ver módulos
                 </Button>
             </CardActions>
-- 
GitLab