File tree Expand file tree Collapse file tree 5 files changed +34
-0
lines changed Expand file tree Collapse file tree 5 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ // This icon file is generated automatically.
2
+ import * as React from 'react' ;
3
+ import ClosureOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ClosureOutlined' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const ClosureOutlined = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { ClosureOutlinedSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( ClosureOutlined ) ;
12
+
13
+ RefIcon . displayName = 'ClosureOutlined' ;
14
+
15
+ export default RefIcon ;
Original file line number Diff line number Diff line change
1
+ // This icon file is generated automatically.
2
+ import * as React from 'react' ;
3
+ import DroneAirportOpenOutlinedSvg from '@sensoro-design/icons-svg/es/asn/DroneAirportOpenOutlined' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const DroneAirportOpenOutlined = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { DroneAirportOpenOutlinedSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( DroneAirportOpenOutlined ) ;
12
+
13
+ RefIcon . displayName = 'DroneAirportOpenOutlined' ;
14
+
15
+ export default RefIcon ;
Original file line number Diff line number Diff line change @@ -162,6 +162,7 @@ export { default as CloseCircleOutlined } from './CloseCircleOutlined';
162
162
export { default as CloseOutlined } from './CloseOutlined' ;
163
163
export { default as CloseSquareFilled } from './CloseSquareFilled' ;
164
164
export { default as CloseSquareOutlined } from './CloseSquareOutlined' ;
165
+ export { default as ClosureOutlined } from './ClosureOutlined' ;
165
166
export { default as CloudFilled } from './CloudFilled' ;
166
167
export { default as CloudOutlined } from './CloudOutlined' ;
167
168
export { default as Co2Outlined } from './Co2Outlined' ;
@@ -233,6 +234,7 @@ export { default as DrawRectangleOutlined } from './DrawRectangleOutlined';
233
234
export { default as DrawRoundOutlined } from './DrawRoundOutlined' ;
234
235
export { default as DrinkWaterPointOutlined } from './DrinkWaterPointOutlined' ;
235
236
export { default as DriveRecorderOutlined } from './DriveRecorderOutlined' ;
237
+ export { default as DroneAirportOpenOutlined } from './DroneAirportOpenOutlined' ;
236
238
export { default as DroneAirportOutlined } from './DroneAirportOutlined' ;
237
239
export { default as DroneFilled } from './DroneFilled' ;
238
240
export { default as DroneOutlined } from './DroneOutlined' ;
You can’t perform that action at this time.
0 commit comments