Skip to content

Commit 6619c8f

Browse files
committed
test: Update snapshots
1 parent d539545 commit 6619c8f

File tree

6 files changed

+35
-0
lines changed

6 files changed

+35
-0
lines changed

snapshots/demo-js-nonurl/index.d.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,11 @@ import { FunctionComponent } from 'react';
55
import { ViewProps } from 'react-native';
66
import { 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+
813
interface Props extends GProps, ViewProps {
914
name: 'classSvg' | 'inlineStyle' | 'normal' | 'style';
1015
size?: number;

snapshots/demo-js-nonurl/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ import IconClassSvg from './IconClassSvg';
66
import IconInlineStyle from './IconInlineStyle';
77
import IconNormal from './IconNormal';
88
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';
913

1014
let IconFont = ({ name, ...rest }) => {
1115
switch (name) {

snapshots/demo-js/index.d.ts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ import { FunctionComponent } from 'react';
55
import { ViewProps } from 'react-native';
66
import { 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+
816
interface Props extends GProps, ViewProps {
917
name: 'alipay' | 'user' | 'setup' | 'classSvg' | 'inlineStyle' | 'normal' | 'style';
1018
size?: number;

snapshots/demo-js/index.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ import IconClassSvg from './IconClassSvg';
99
import IconInlineStyle from './IconInlineStyle';
1010
import IconNormal from './IconNormal';
1111
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';
1219

1320
let IconFont = ({ name, ...rest }) => {
1421
switch (name) {

snapshots/demo-ts-nonurl/index.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ import IconClassSvg from './IconClassSvg';
88
import IconInlineStyle from './IconInlineStyle';
99
import IconNormal from './IconNormal';
1010
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';
1115

1216
export type IconNames = 'classSvg' | 'inlineStyle' | 'normal' | 'style';
1317

snapshots/demo-ts/index.tsx

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ import IconClassSvg from './IconClassSvg';
1111
import IconInlineStyle from './IconInlineStyle';
1212
import IconNormal from './IconNormal';
1313
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';
1421

1522
export type IconNames = 'alipay' | 'user' | 'setup' | 'classSvg' | 'inlineStyle' | 'normal' | 'style';
1623

0 commit comments

Comments
 (0)