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';
5
5
import { ViewProps } from 'react-native' ;
6
6
import { GProps } from 'react-native-svg' ;
7
7
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
+
8
13
interface Props extends GProps , ViewProps {
9
14
name : 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
10
15
size ?: number ;
Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ import IconClassSvg from './IconClassSvg';
6
6
import IconInlineStyle from './IconInlineStyle' ;
7
7
import IconNormal from './IconNormal' ;
8
8
import 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' ;
9
13
10
14
let IconFont = ( { name, ...rest } ) => {
11
15
switch ( name ) {
Original file line number Diff line number Diff line change @@ -5,6 +5,14 @@ import { FunctionComponent } from 'react';
5
5
import { ViewProps } from 'react-native' ;
6
6
import { GProps } from 'react-native-svg' ;
7
7
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
+
8
16
interface Props extends GProps , ViewProps {
9
17
name : 'alipay' | 'user' | 'setup' | 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
10
18
size ?: number ;
Original file line number Diff line number Diff line change @@ -9,6 +9,13 @@ import IconClassSvg from './IconClassSvg';
9
9
import IconInlineStyle from './IconInlineStyle' ;
10
10
import IconNormal from './IconNormal' ;
11
11
import 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' ;
12
19
13
20
let IconFont = ( { name, ...rest } ) => {
14
21
switch ( name ) {
Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ import IconClassSvg from './IconClassSvg';
8
8
import IconInlineStyle from './IconInlineStyle' ;
9
9
import IconNormal from './IconNormal' ;
10
10
import 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' ;
11
15
12
16
export type IconNames = 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
13
17
Original file line number Diff line number Diff line change @@ -11,6 +11,13 @@ import IconClassSvg from './IconClassSvg';
11
11
import IconInlineStyle from './IconInlineStyle' ;
12
12
import IconNormal from './IconNormal' ;
13
13
import 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' ;
14
21
15
22
export type IconNames = 'alipay' | 'user' | 'setup' | 'classSvg' | 'inlineStyle' | 'normal' | 'style' ;
16
23
You can’t perform that action at this time.
0 commit comments