Skip to content

Commit

Permalink
test: Update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
fwh1990 committed Sep 13, 2021
1 parent 75f882b commit e004163
Show file tree
Hide file tree
Showing 10 changed files with 4 additions and 4 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
/* eslint-disable */

import React from 'react';
import Iconfont_alipay from './alipay/alipay';
import Iconfont_ali from './ali/ali';

const IconFont = (props) => {
const { name, size, color } = props;

// FIXME: RemaxJs doesn't support pxTransform()
return <Iconfont_alipay name={name} size={size} color={color} />;
return <Iconfont_ali name={name} size={size} color={color} />;
};

IconFont.defaultProps = {
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

import React, { FunctionComponent } from 'react';
// @ts-ignore
import Iconfont_alipay from './alipay/alipay';
import Iconfont_ali from './ali/ali';

interface Props {
name: 'alipay' | 'user' | 'setup';
Expand All @@ -16,7 +16,7 @@ const IconFont: FunctionComponent<Props> = (props) => {

// FIXME: RemaxJs doesn't support pxTransform()
// @ts-ignore
return <Iconfont_alipay name={name} size={size} color={color} />;
return <Iconfont_ali name={name} size={size} color={color} />;
};

IconFont.defaultProps = {
Expand Down

0 comments on commit e004163

Please sign in to comment.