Skip to content

Commit f75048b

Browse files
committed
feat: add SpaceOutlined
1 parent 0042293 commit f75048b

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 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;

packages/react/src/icons/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -850,6 +850,7 @@ export { default as SmokePurely } from './SmokePurely';
850850
export { default as SortOutlined } from './SortOutlined';
851851
export { default as SoundOutlined } from './SoundOutlined';
852852
export { default as SoundSmallOutlined } from './SoundSmallOutlined';
853+
export { default as SpaceOutlined } from './SpaceOutlined';
853854
export { default as SpecialGroupsFilled } from './SpecialGroupsFilled';
854855
export { default as SpecialPopulationsPurely } from './SpecialPopulationsPurely';
855856
export { default as SpecialVehiclesPurely } from './SpecialVehiclesPurely';

0 commit comments

Comments
 (0)