Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/packages / ui / Button / _presets / ApplePayButton.js
Size: Mime:
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