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/ui / src / components / atoms / IFrame / styled.js
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});

const styleh_components_1 = require("styleh-components");

exports.StyledIFrameWrap = styleh_components_1.styled.div`
  position: relative;

  ${props => props.width && props.height && styleh_components_1.styled.css`
      width: ${props.width};
      height: ${props.height};
    `};
`;
exports.StyledIFrame = styleh_components_1.styled.withComponent('iframe')`
  width: 100%;
  height: 100%;
`; //# sourceMappingURL=styled.js.map