{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFridge/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n} & SVGProps<SVGSVGElement>;\n\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  ...props\n}) => {\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? undefined : \"img\"}\n      width={typeof size === \"number\" ? `${size}px` : size}\n      height={typeof size === \"number\" ? `${size}px` : size}\n      viewBox=\"0 0 24 24\"\n      fill=\"none\"\n      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconFridge: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"fridge\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 2.75C4 2.33579 4.33579 2 4.75 2H19.25C19.6642 2 20 2.33579 20 2.75V10.25H4V2.75ZM16 6.25C16 5.83579 15.6642 5.5 15.25 5.5C14.8358 5.5 14.5 5.83579 14.5 6.25V7.25C14.5 7.66421 14.8358 8 15.25 8C15.6642 8 16 7.66421 16 7.25V6.25Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4 11.75V21.5C4 21.9142 4.33579 22.25 4.75 22.25H19.25C19.6642 22.25 20 21.9142 20 21.5V11.75H4ZM15.25 14C15.6642 14 16 14.3358 16 14.75V15.75C16 16.1642 15.6642 16.5 15.25 16.5C14.8358 16.5 14.5 16.1642 14.5 15.75V14.75C14.5 14.3358 14.8358 14 15.25 14Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFridge;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,CACD,GCjCN,qBAGO,IAAM,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAiqB,EAAjqB,IAAqB,EAAO,UAAU,UAAS,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,yOAAyO,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iQAAiQ,KAAK,eAAc,CAAI,GAG3pB",
  "debugId": "EC275342BA5CF16A64756E2164756E21",
  "names": []
}