Repository URL to install this package:
|
Version:
0.0.13 ▾
|
import * as React from 'react';
import { CardTypeIcon } from '@skava/packages/ui';
import { StyledCardListWrap } from './styled';
class CardImages extends React.PureComponent {
render() {
return (React.createElement(StyledCardListWrap, null,
React.createElement(CardTypeIcon, { cardType: 'visa' }),
React.createElement(CardTypeIcon, { cardType: 'master' }),
React.createElement(CardTypeIcon, { cardType: 'amex' }),
React.createElement(CardTypeIcon, { cardType: 'discover' })));
}
}
export { CardImages };
export default CardImages;
//# sourceMappingURL=CardImage.js.map