We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4bde15 commit 6a352b2Copy full SHA for 6a352b2
1 file changed
src/components/Tree/SwitcherIcon.jsx
@@ -3,6 +3,10 @@ import React from "react";
3
import { Down, Right } from "neetoicons";
4
5
const SwitcherIcon = ({ expanded }) =>
6
- expanded ? <Down size={16} /> : <Right size={16} />;
+ expanded ? (
7
+ <Down className="neeto-ui-relative" size={16} />
8
+ ) : (
9
+ <Right className="neeto-ui-relative" size={16} />
10
+ );
11
12
export default SwitcherIcon;
0 commit comments