File tree Expand file tree Collapse file tree 3 files changed +17
-0
lines changed Expand file tree Collapse file tree 3 files changed +17
-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 SpaceOutlinedSvg from '@sensoro-design/icons-svg/es/asn/SpaceOutlined' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const SpaceOutlined = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { SpaceOutlinedSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( SpaceOutlined ) ;
12
+
13
+ RefIcon . displayName = 'SpaceOutlined' ;
14
+
15
+ export default RefIcon ;
Original file line number Diff line number Diff line change @@ -850,6 +850,7 @@ export { default as SmokePurely } from './SmokePurely';
850
850
export { default as SortOutlined } from './SortOutlined' ;
851
851
export { default as SoundOutlined } from './SoundOutlined' ;
852
852
export { default as SoundSmallOutlined } from './SoundSmallOutlined' ;
853
+ export { default as SpaceOutlined } from './SpaceOutlined' ;
853
854
export { default as SpecialGroupsFilled } from './SpecialGroupsFilled' ;
854
855
export { default as SpecialPopulationsPurely } from './SpecialPopulationsPurely' ;
855
856
export { default as SpecialVehiclesPurely } from './SpecialVehiclesPurely' ;
You can’t perform that action at this time.
0 commit comments