File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+
3+ interface CollapsAllIconProps {
4+ height ?: string ;
5+ width ?: string ;
6+ fill ?: string ;
7+ strokeWidth ?: string ;
8+ style ?: React . CSSProperties ;
9+ }
10+
11+ const CollapsAllIcon : React . FC < CollapsAllIconProps > = ( {
12+ height = '24' ,
13+ width = '24' ,
14+ fill = 'none' ,
15+ strokeWidth = '2' ,
16+ style
17+ } ) => (
18+ < svg
19+ xmlns = "http://www.w3.org/2000/svg"
20+ viewBox = "0 0 24 24"
21+ height = { height }
22+ width = { width }
23+ style = { style }
24+ >
25+ < path
26+ d = "M17 16l-5-5-5 5"
27+ fill = { fill }
28+ stroke = "currentColor"
29+ strokeWidth = { strokeWidth }
30+ strokeLinecap = "round"
31+ strokeLinejoin = "round"
32+ />
33+ < path
34+ d = "M17 10l-5-5-5 5"
35+ fill = { fill }
36+ stroke = "currentColor"
37+ strokeWidth = { strokeWidth }
38+ strokeLinecap = "round"
39+ strokeLinejoin = "round"
40+ />
41+ </ svg >
42+ ) ;
43+
44+ export default CollapsAllIcon ;
Original file line number Diff line number Diff line change 1+ export { default as CollapseAll } from './CollapseAllIcon' ;
Original file line number Diff line number Diff line change 1+ import React from 'react' ;
2+
3+ interface ExpandAllProps {
4+ height ?: string ;
5+ width ?: string ;
6+ fill ?: string ;
7+ strokeWidth ?: string ;
8+ style ?: React . CSSProperties ;
9+ }
10+
11+ const ExpandAll : React . FC < ExpandAllProps > = ( {
12+ height = '24' ,
13+ width = '24' ,
14+ fill = 'none' ,
15+ strokeWidth = '2' ,
16+ style
17+ } ) => (
18+ < svg
19+ xmlns = "http://www.w3.org/2000/svg"
20+ viewBox = "0 0 24 24"
21+ height = { height }
22+ width = { width }
23+ style = { style }
24+ >
25+ < path
26+ d = "M7 8l5 5 5-5"
27+ fill = { fill }
28+ stroke = "currentColor"
29+ strokeWidth = { strokeWidth }
30+ strokeLinecap = "round"
31+ strokeLinejoin = "round"
32+ />
33+ < path
34+ d = "M7 14l5 5 5-5"
35+ fill = { fill }
36+ stroke = "currentColor"
37+ strokeWidth = { strokeWidth }
38+ strokeLinecap = "round"
39+ strokeLinejoin = "round"
40+ />
41+ </ svg >
42+ ) ;
43+
44+ export default ExpandAll ;
Original file line number Diff line number Diff line change 1+ export { default as ExpandAll } from './ExpandAllIcon' ;
Original file line number Diff line number Diff line change @@ -9,6 +9,7 @@ export * from './Circle';
99export * from './Clone' ;
1010export * from './Close' ;
1111export * from './Cloud' ;
12+ export * from './CollapseAll' ;
1213export * from './Column' ;
1314export * from './Component' ;
1415export * from './Configuration' ;
@@ -25,6 +26,7 @@ export * from './Designer';
2526export * from './Detail' ;
2627export * from './DropDownIcon' ;
2728export * from './Error' ;
29+ export * from './ExpandAll' ;
2830export * from './Favorite' ;
2931export * from './Filter' ;
3032export * from './Fullscreen' ;
You can’t perform that action at this time.
0 commit comments