Skip to content

Commit d01cbbd

Browse files
committed
feat: add SatelliteFilled
1 parent 0b5818f commit d01cbbd

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed
Lines changed: 1 addition & 0 deletions
Loading
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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;

packages/react/src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -803,6 +803,7 @@ export { default as SafetyRopeOutlined } from './SafetyRopeOutlined';
803803
export { default as SafetySearchFilled } from './SafetySearchFilled';
804804
export { default as SafetySearchOutlined } from './SafetySearchOutlined';
805805
export { default as SalesCallFilled } from './SalesCallFilled';
806+
export { default as SatelliteFilled } from './SatelliteFilled';
806807
export { default as SatelliteOutlined } from './SatelliteOutlined';
807808
export { default as SaveOutlined } from './SaveOutlined';
808809
export { default as ScanCodeOutlined } from './ScanCodeOutlined';

0 commit comments

Comments
 (0)