From 1311c47ed9ad6c315dd1d1761806ff73f6617816 Mon Sep 17 00:00:00 2001 From: Richard Simpson Date: Mon, 19 Aug 2019 20:09:45 -0500 Subject: [PATCH] fix: align expander icons with mui --- src/Shared/Command.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Shared/Command.js b/src/Shared/Command.js index d859805b0..0bd6ecef4 100644 --- a/src/Shared/Command.js +++ b/src/Shared/Command.js @@ -3,8 +3,8 @@ import PropTypes from "prop-types" import React, { Component } from "react" import { MdLabel as DisplayIcon, - MdExpandMore as IconOpen, - MdChevronRight as IconClosed + MdExpandLess as IconOpen, + MdExpandMore as IconClosed } from "react-icons/md" import Timestamp from "../Shared/Timestamp" import AppStyles from "../Theme/AppStyles"