{"version":3,"sources":["webpack:///./src/components/Icon/Icons/ArrowDown.tsx","webpack:///./src/components/Icon/Icons/VArrow.tsx","webpack:///./src/components/Icon/Icon.tsx","webpack:///./src/components/Icon/styles.module.scss","webpack:///./src/components/Icon/Icons/Shoppingcart.tsx","webpack:///./src/components/Icon/Icons/KlimatbutikenLogo.tsx","webpack:///./src/components/Icon/Icons/Plus.tsx","webpack:///./src/components/Icon/Icons/ArrowLeft.tsx","webpack:///./src/components/Icon/Icons/Minus.tsx","webpack:///./src/components/Icon/Icons/Facebook.tsx"],"names":["SvgArrowDown","props","xmlns","viewBox","data-name","d","fill","stroke","strokeLinecap","strokeLinejoin","strokeWidth","SvgVArrow","Icon","icon","size","className","rotate","htmlAttributes","classes","classNames","styles","cursor","onClick","React","memo","module","exports","SvgShoppingcart","id","transform","clipPath","SvgKlimatbutikenLogo","SvgArrowLeft","SvgFacebook","fillRule","clipRule"],"mappings":"6FAAA,gBAkBeA,IAhBf,SAAsBC,GACpB,OACE,qCAAKC,MAAM,6BAA6BC,QAAQ,oBAAuBF,GACrE,wBACEG,YAAU,WACVC,EAAE,uCACFC,KAAK,OACLC,OAAO,eACPC,cAAc,QACdC,eAAe,QACfC,YAAa,O,2UCCNC,I,kECOTC,EAAwB,SAACX,GAEgCA,EAArDY,KAFsC,MAEhCC,EAA+Cb,EAA/Ca,KAAMC,EAAyCd,EAAzCc,UAAWC,EAA8Bf,EAA9Be,OAAWC,EAFI,YAEehB,EAFf,sCAIxCiB,EAAUC,IAAWC,IAAOP,KAAMO,IAAON,GAAOC,IAA5B,MACvBK,IAAOJ,QAASA,EADO,EAEvBI,IAAOC,QAASJ,EAAeK,QAFR,IAK1B,OACE,wCAAMP,UAAWG,GAAaD,GAC5B,kBAAChB,EAAMY,KAAP,QAKSU,MAAMC,KAAKZ,G,gDCnC1Ba,EAAOC,QAAU,CAAC,KAAO,6BAA6B,KAAO,6BAA6B,MAAQ,8BAA8B,OAAS,+BAA+B,MAAQ,8BAA8B,OAAS,+BAA+B,OAAS,iC,kCCD/P,gBAuCeC,IArCf,SAAyB1B,GACvB,OACE,qCAAKC,MAAM,8BAAiCD,GAC1C,4BACE,4BAAU2B,GAAG,uBACX,wBAAMxB,YAAU,UAAUC,EAAE,4BAA4BwB,UAAU,sBAAsBvB,KAAK,oBAGjG,qBAAGF,YAAU,YACX,qBAAGA,YAAU,WAAW0B,SAAS,6BAC/B,qBAAG1B,YAAU,WACX,wBACEA,YAAU,UACVC,EAAE,4OACFC,KAAK,UAGT,qBAAGF,YAAU,WACX,wBACEA,YAAU,UACVC,EAAE,6OACFC,KAAK,UAGT,qBAAGF,YAAU,YACX,wBACEA,YAAU,UACVC,EAAE,8fACFC,KAAK,e,kCC9BnB,gBA6BeyB,IA3Bf,SAA8B9B,GAC5B,OACE,qCAAK2B,GAAG,gCAAgC1B,MAAM,6BAA6BC,QAAQ,sBAAyBF,GAC1G,4BACE,6BAAQ,8CAEV,wBAAMI,EAAE,sCAAsCC,KAAK,YACnD,wBACES,UAAU,gCACVV,EAAE,wuCAEJ,wBACEU,UAAU,gCACVV,EAAE,2o+BAEJ,wBACEU,UAAU,gCACVV,EAAE,sqBAEJ,wBACEU,UAAU,gCACVV,EAAE,4gG,kCCvBV,W,oCCAA,gBAiBe2B,IAff,SAAsB/B,GACpB,OACE,qCAAKC,MAAM,6BAA6BC,QAAQ,mBAAsBF,GACpE,wBACEG,YAAU,WACVC,EAAE,2BACFC,KAAK,OACLC,OAAO,eACPC,cAAc,QACdC,eAAe,a,kCCXvB,W,oCCAA,gBAoBewB,IAlBf,SAAqBhC,GACnB,OACE,qCAAKC,MAAM,6BAA6BC,QAAQ,oBAAuBF,GACrE,wBACEI,EAAE,qIACF6B,SAAS,UACTC,SAAS,UACT7B,KAAK,YAEP,wBACED,EAAE,08CACFC,KAAK,SAEP,wBAAMA,KAAK,UAAUD,EAAE","file":"commons-560b16893fdb80787338.js","sourcesContent":["import * as React from 'react'\n\nfunction SvgArrowDown(props: React.SVGProps) {\n return (\n \n \n \n )\n}\n\nexport default SvgArrowDown\n","import * as React from 'react'\n\nfunction SvgVArrow(props: React.SVGProps) {\n return (\n \n \n \n )\n}\n\nexport default SvgVArrow\n","import React, { HTMLAttributes } from 'react'\nimport styles from './styles.module.scss'\nimport classNames from 'classnames'\n\nexport interface Props extends HTMLAttributes {\n icon: React.FC>\n className?: string\n size: 'tiny' | 'small' | 'medium' | 'large' | 'none'\n rotate?: boolean\n}\n\n/**\n * An Icon component which renders as a span. Accepts the listed props and all standard HTMLAttributes on a span\n * The icons within the /Icons folder is generated via svgr and the script generate:svgs in package.json\n * add a new one by adding a svg file to assets/icons and run the script\n * usage:\n * import { Icon, Close } from shared/components/Icon\n * \n * @param {React.FC>} props.icon - A svg react-component used in the icon\n */\nconst Icon: React.FC = (props: Props) => {\n //eslint-disable-next-line\n const { icon, size, className, rotate, ...htmlAttributes } = props\n\n const classes = classNames(styles.icon, styles[size], className, {\n [styles.rotate]: rotate,\n [styles.cursor]: htmlAttributes.onClick\n })\n\n return (\n \n \n \n )\n}\n\nexport default React.memo(Icon)\n","// extracted by mini-css-extract-plugin\nmodule.exports = {\"icon\":\"styles-module--icon--GG7Y-\",\"tiny\":\"styles-module--tiny--3WmpJ\",\"small\":\"styles-module--small--NCXaW\",\"medium\":\"styles-module--medium--3vEL4\",\"large\":\"styles-module--large--3mie0\",\"cursor\":\"styles-module--cursor--3aQyq\",\"rotate\":\"styles-module--rotate--TsZ9V\"};","import * as React from 'react'\n\nfunction SvgShoppingcart(props: React.SVGProps) {\n return (\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n )\n}\n\nexport default SvgShoppingcart\n","import * as React from 'react'\n\nfunction SvgKlimatbutikenLogo(props: React.SVGProps) {\n return (\n \n \n \n \n \n \n \n \n \n \n )\n}\n\nexport default SvgKlimatbutikenLogo\n","import * as React from 'react'\n\nfunction SvgPlus(props: React.SVGProps) {\n return (\n \n \n \n )\n}\n\nexport default SvgPlus\n","import * as React from 'react'\n\nfunction SvgArrowLeft(props: React.SVGProps) {\n return (\n \n \n \n )\n}\n\nexport default SvgArrowLeft\n","import * as React from 'react'\n\nfunction SvgMinus(props: React.SVGProps) {\n return (\n \n \n \n )\n}\n\nexport default SvgMinus\n","import * as React from 'react'\n\nfunction SvgFacebook(props: React.SVGProps) {\n return (\n \n \n \n \n \n )\n}\n\nexport default SvgFacebook\n"],"sourceRoot":""}