File tree Expand file tree Collapse file tree 9 files changed +80
-0
lines changed Expand file tree Collapse file tree 9 files changed +80
-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 AndroidFilledSvg from '@sensoro-design/icons-svg/es/asn/AndroidFilled' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const AndroidFilled = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { AndroidFilledSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( AndroidFilled ) ;
12
+
13
+ RefIcon . displayName = 'AndroidFilled' ;
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 AndroidOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AndroidOutlined' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const AndroidOutlined = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { AndroidOutlinedSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( AndroidOutlined ) ;
12
+
13
+ RefIcon . displayName = 'AndroidOutlined' ;
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 AppleFilledSvg from '@sensoro-design/icons-svg/es/asn/AppleFilled' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const AppleFilled = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { AppleFilledSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( AppleFilled ) ;
12
+
13
+ RefIcon . displayName = 'AppleFilled' ;
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 AppleOutlinedSvg from '@sensoro-design/icons-svg/es/asn/AppleOutlined' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const AppleOutlined = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { AppleOutlinedSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( AppleOutlined ) ;
12
+
13
+ RefIcon . displayName = 'AppleOutlined' ;
14
+
15
+ export default RefIcon ;
Original file line number Diff line number Diff line change @@ -24,10 +24,14 @@ export { default as AlgorithmSupermarketPurely } from './AlgorithmSupermarketPur
24
24
export { default as AlignCenterOutlined } from './AlignCenterOutlined' ;
25
25
export { default as AlignLeftOutlined } from './AlignLeftOutlined' ;
26
26
export { default as AlignRightOutlined } from './AlignRightOutlined' ;
27
+ export { default as AndroidFilled } from './AndroidFilled' ;
28
+ export { default as AndroidOutlined } from './AndroidOutlined' ;
27
29
export { default as AnimalHospitalFilled } from './AnimalHospitalFilled' ;
28
30
export { default as AnimalHospitalOutlined } from './AnimalHospitalOutlined' ;
29
31
export { default as ApertureMinusOutlined } from './ApertureMinusOutlined' ;
30
32
export { default as AperturePlusOutlined } from './AperturePlusOutlined' ;
33
+ export { default as AppleFilled } from './AppleFilled' ;
34
+ export { default as AppleOutlined } from './AppleOutlined' ;
31
35
export { default as AppletsOutlined } from './AppletsOutlined' ;
32
36
export { default as ApplicationFilled } from './ApplicationFilled' ;
33
37
export { default as AppstoreAddOutlined } from './AppstoreAddOutlined' ;
You can’t perform that action at this time.
0 commit comments