File tree Expand file tree Collapse file tree 6 files changed +35
-0
lines changed
Expand file tree Collapse file tree 6 files changed +35
-0
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ import { FunctionComponent } from 'react';
55import { ViewProps } from 'react-native' ;
66import { GProps } from 'react-native-svg' ;
77
8+ export { default as IconClassSvg } from './IconClassSvg' ;
9+ export { default as IconInlineStyle } from './IconInlineStyle' ;
10+ export { default as IconNormal } from './IconNormal' ;
11+ export { default as IconStyle } from './IconStyle' ;
12+
813interface Props extends GProps , ViewProps {
914 name : 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
1015 size ?: number ;
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ import IconClassSvg from './IconClassSvg';
66import IconInlineStyle from './IconInlineStyle' ;
77import IconNormal from './IconNormal' ;
88import IconStyle from './IconStyle' ;
9+ export { default as IconClassSvg } from './IconClassSvg' ;
10+ export { default as IconInlineStyle } from './IconInlineStyle' ;
11+ export { default as IconNormal } from './IconNormal' ;
12+ export { default as IconStyle } from './IconStyle' ;
913
1014let IconFont = ( { name, ...rest } ) => {
1115 switch ( name ) {
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ import { FunctionComponent } from 'react';
55import { ViewProps } from 'react-native' ;
66import { GProps } from 'react-native-svg' ;
77
8+ export { default as IconAlipay } from './IconAlipay' ;
9+ export { default as IconUser } from './IconUser' ;
10+ export { default as IconSetup } from './IconSetup' ;
11+ export { default as IconClassSvg } from './IconClassSvg' ;
12+ export { default as IconInlineStyle } from './IconInlineStyle' ;
13+ export { default as IconNormal } from './IconNormal' ;
14+ export { default as IconStyle } from './IconStyle' ;
15+
816interface Props extends GProps , ViewProps {
917 name : 'alipay' | 'user' | 'setup' | 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
1018 size ?: number ;
Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ import IconClassSvg from './IconClassSvg';
99import IconInlineStyle from './IconInlineStyle' ;
1010import IconNormal from './IconNormal' ;
1111import IconStyle from './IconStyle' ;
12+ export { default as IconAlipay } from './IconAlipay' ;
13+ export { default as IconUser } from './IconUser' ;
14+ export { default as IconSetup } from './IconSetup' ;
15+ export { default as IconClassSvg } from './IconClassSvg' ;
16+ export { default as IconInlineStyle } from './IconInlineStyle' ;
17+ export { default as IconNormal } from './IconNormal' ;
18+ export { default as IconStyle } from './IconStyle' ;
1219
1320let IconFont = ( { name, ...rest } ) => {
1421 switch ( name ) {
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ import IconClassSvg from './IconClassSvg';
88import IconInlineStyle from './IconInlineStyle' ;
99import IconNormal from './IconNormal' ;
1010import IconStyle from './IconStyle' ;
11+ export { default as IconClassSvg } from './IconClassSvg' ;
12+ export { default as IconInlineStyle } from './IconInlineStyle' ;
13+ export { default as IconNormal } from './IconNormal' ;
14+ export { default as IconStyle } from './IconStyle' ;
1115
1216export type IconNames = 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
1317
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ import IconClassSvg from './IconClassSvg';
1111import IconInlineStyle from './IconInlineStyle' ;
1212import IconNormal from './IconNormal' ;
1313import IconStyle from './IconStyle' ;
14+ export { default as IconAlipay } from './IconAlipay' ;
15+ export { default as IconUser } from './IconUser' ;
16+ export { default as IconSetup } from './IconSetup' ;
17+ export { default as IconClassSvg } from './IconClassSvg' ;
18+ export { default as IconInlineStyle } from './IconInlineStyle' ;
19+ export { default as IconNormal } from './IconNormal' ;
20+ export { default as IconStyle } from './IconStyle' ;
1421
1522export type IconNames = 'alipay' | 'user' | 'setup' | 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
1623
You can’t perform that action at this time.
0 commit comments