fix: decrease asc/decs icon size

This commit is contained in:
thecodrr
2020-11-21 12:07:42 +05:00
parent ba04c346fc
commit 7dbb6d5331

View File

@@ -78,9 +78,9 @@ function GroupHeader(props) {
text={sortDirection === "desc" ? "Ascending" : "Descending"}
icon={
sortDirection === "desc" ? (
<Icon.SortDesc size={18} />
<Icon.SortDesc size={14} />
) : (
<Icon.SortAsc size={18} />
<Icon.SortAsc size={14} />
)
}
textStyle={{ mr: 1 }}