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 / Logo / styled.js
Size: Mime:
import React from 'react';
import { styled } from 'styleh-components';
import { media } from '@skava/styleh-toolset';
import { Link } from '@skava/link';
import { wording, qa } from './fixture';
const LinkAdapter = (props) => (React.createElement(Link, Object.assign({ "aria-label": wording.logoLink, "data-qa": qa.logoLink, to: "/" }, props)));
const StyledLink = styled(LinkAdapter) `
  ${media.phoneOrSmaller `
    margin: 0 auto;
    display: flex;
  `}
`;
export { StyledLink };
export default { StyledLink };
//# sourceMappingURL=styled.js.map