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    
Size: Mime:
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const view_container_1 = require("uxui-modules/view-container");
const Text_1 = require("atoms/Text");
const SelectDropDown_1 = require("molecules/SelectDropDown");
const ProductPieces_1 = require("presets/ProductPieces");
const Quantity_1 = require("presets/Quantity");
const Incrementer_1 = require("src/inputs/Incrementer");
const StyledProductTitle = view_container_1.styled.withComponent(ProductPieces_1.ProductName) `
  margin: 0;
`;
exports.StyledProductTitle = StyledProductTitle;
const StyledProductPrice = view_container_1.styled.withComponent(ProductPieces_1.ProductPrice) `
  font-size: 20px;
  font-weight: bold;
  margin-bottom: rem(16);
`;
exports.StyledProductPrice = StyledProductPrice;
const StyledProductOptions = view_container_1.styled.div ``;
exports.StyledProductOptions = StyledProductOptions;
const StyledProductOptionsLabel = view_container_1.styled.span `
  font-weight: 500;
`;
exports.StyledProductOptionsLabel = StyledProductOptionsLabel;
const StyledProductOptionsValue = view_container_1.styled.span ``;
exports.StyledProductOptionsValue = StyledProductOptionsValue;
const StyledProductQuantity = view_container_1.styled.div ``;
exports.StyledProductQuantity = StyledProductQuantity;
const StyledQuantityLabel = view_container_1.styled.span `
  font-weight: 500;
`;
exports.StyledQuantityLabel = StyledQuantityLabel;
const StyledQuantityValue = view_container_1.styled.span ``;
exports.StyledQuantityValue = StyledQuantityValue;
const StyledHeading = view_container_1.styled.withComponent(Text_1.Heading) `
  color: #2c2c2c;
  text-transform: capitalize;
  margin: 0;
  margin-bottom: rem(8);
`;
exports.StyledHeading = StyledHeading;
const StyledSelectDropdown = view_container_1.styled.withComponent(SelectDropDown_1.SelectDropDown) `
  width: 100%;
`;
exports.StyledSelectDropdown = StyledSelectDropdown;
const StyledQuantity = view_container_1.styled.withComponent(Quantity_1.Quantity) `
  width: 100px;

  ${Incrementer_1.IncrementerWrapper} {
    padding: 10px;
    border: 1px solid #A6AFC1;
    border-radius: 4px;
  }
`;
exports.StyledQuantity = StyledQuantity;
//# sourceMappingURL=styled.js.map