File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 14
14
"build:core" : " pnpm -r --filter @sensoro-design/icons-svg run build" ,
15
15
"release" : " walrus release" ,
16
16
"release:build" : " lerna run --concurrency 8 --no-private build" ,
17
- "release:version" : " lerna version --conventional-commits --no-push -- yes --no-private" ,
17
+ "release:version" : " lerna version --conventional-commits --yes --no-private" ,
18
18
"release:publish" : " pnpm publish --recursive --tag latest" ,
19
19
"prepare" : " husky || true" ,
20
20
"preinstall" : " npx only-allow pnpm"
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 ChargeOutlinedSvg from '@sensoro-design/icons-svg/es/asn/ChargeOutlined' ;
4
+ import SensoroIcon , { SensoroIconProps } from '../components/SensoroIcon' ;
5
+
6
+ const ChargeOutlined = ( props : SensoroIconProps , ref : React . MutableRefObject < HTMLSpanElement > ) => (
7
+ < SensoroIcon { ...props } ref = { ref } icon = { ChargeOutlinedSvg } />
8
+ ) ;
9
+
10
+ const RefIcon : React . ForwardRefExoticComponent < Omit < SensoroIconProps , 'ref' > & React . RefAttributes < HTMLSpanElement > > =
11
+ React . forwardRef < HTMLSpanElement , SensoroIconProps > ( ChargeOutlined ) ;
12
+
13
+ RefIcon . displayName = 'ChargeOutlined' ;
14
+
15
+ export default RefIcon ;
Original file line number Diff line number Diff line change @@ -139,6 +139,7 @@ export { default as CateringFilled } from './CateringFilled';
139
139
export { default as CateringOutlined } from './CateringOutlined' ;
140
140
export { default as CellularDiagramFilled } from './CellularDiagramFilled' ;
141
141
export { default as Ch4Outlined } from './Ch4Outlined' ;
142
+ export { default as ChargeOutlined } from './ChargeOutlined' ;
142
143
export { default as CheckCircleFilled } from './CheckCircleFilled' ;
143
144
export { default as CheckCircleOutlined } from './CheckCircleOutlined' ;
144
145
export { default as CheckOutlined } from './CheckOutlined' ;
You can’t perform that action at this time.
0 commit comments