Skip to content

Commit 8335ff0

Browse files
author
0xmikko.eth
authored
Merge pull request #14 from Gearbox-protocol/test-pr
fix: test pr
2 parents 15e767e + eb3068a commit 8335ff0

File tree

1 file changed

+15
-17
lines changed

1 file changed

+15
-17
lines changed

src/icons/pending.tsx

Lines changed: 15 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -3,20 +3,18 @@ import { Settings } from "react-feather";
33

44
import { IconProps } from "../core/icon";
55

6-
export const IconPending = ({ size, style, onClick }: IconProps) => {
7-
return (
8-
<Settings
9-
size={size}
10-
onClick={onClick}
11-
style={{
12-
marginTop: "2px",
13-
animationDuration: "3s",
14-
animationName: "spin",
15-
animationIterationCount: "infinite",
16-
animationDelay: "0",
17-
animationTimingFunction: "linear",
18-
...style,
19-
}}
20-
/>
21-
);
22-
};
6+
export const IconPending = ({ size, style, onClick }: IconProps) => (
7+
<Settings
8+
size={size}
9+
onClick={onClick}
10+
style={{
11+
marginTop: "2px",
12+
animationDuration: "3s",
13+
animationName: "spin",
14+
animationIterationCount: "infinite",
15+
animationDelay: "0",
16+
animationTimingFunction: "linear",
17+
...style,
18+
}}
19+
/>
20+
);

0 commit comments

Comments
 (0)