File tree Expand file tree Collapse file tree 1 file changed +15
-17
lines changed
Expand file tree Collapse file tree 1 file changed +15
-17
lines changed Original file line number Diff line number Diff line change @@ -3,20 +3,18 @@ import { Settings } from "react-feather";
33
44import { 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+ ) ;
You can’t perform that action at this time.
0 commit comments