Repository URL to install this package:
|
Version:
0.0.14 ▾
|
import * as React from 'react';
import { LogoIcon } from '@skava/ui/dist/components/atoms/Icons';
import GhostButton from '../GhostButton';
import { styled } from 'styleh-components';
const StyledApplePayGhostButton = styled(GhostButton) `
padding: rem(14) 0 0.625rem 0;
height: 3rem;
border: 1px solid var(--color-black);
svg {
max-height: 100%;
width: 100%;
}
`;
class ApplePayButton extends React.PureComponent {
render() {
return (React.createElement(StyledApplePayGhostButton, Object.assign({ className: 'apple', icon: React.createElement(LogoIcon, { breed: "apple" }) }, this.props)));
}
}
export { ApplePayButton };
export default ApplePayButton;
//# sourceMappingURL=ApplePayButton.js.map