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 / playground / Button / styled.js
Size: Mime:
"use strict";

Object.defineProperty(exports, "__esModule", {
  value: true
});
exports.StyledButton = styled.button.attrs({})`
  /* @TODO display:none style to be added based props */
  &.hide {
    display: none;
  }

  .icon-left {
    svg,
    .icon {
      order: -1;
    }
  }
  .icon-right {
    svg,
    .icon {
      order: 10;
    }
  }
`;
exports.StyledDiv = styled.div.attrs({})``;
exports.ButtonText = styled.span.className('button-text')`
  display: flex;
  align-items: center;
  justify-content: center;
`; //# sourceMappingURL=styled.js.map