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 SatelliteFilledSvg from '@sensoro-design/icons-svg/es/asn/SatelliteFilled' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const SatelliteFilled = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { SatelliteFilledSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( SatelliteFilled ) ;
12
+
13
+ RefIcon . displayName = 'SatelliteFilled' ;
14
+
15
+ export default RefIcon ;
Original file line number Diff line number Diff line change @@ -803,6 +803,7 @@ export { default as SafetyRopeOutlined } from './SafetyRopeOutlined';
803
803
export { default as SafetySearchFilled } from './SafetySearchFilled' ;
804
804
export { default as SafetySearchOutlined } from './SafetySearchOutlined' ;
805
805
export { default as SalesCallFilled } from './SalesCallFilled' ;
806
+ export { default as SatelliteFilled } from './SatelliteFilled' ;
806
807
export { default as SatelliteOutlined } from './SatelliteOutlined' ;
807
808
export { default as SaveOutlined } from './SaveOutlined' ;
808
809
export { default as ScanCodeOutlined } from './ScanCodeOutlined' ;
You can’t perform that action at this time.
0 commit comments