{
  "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 5.75C4 3.67893 5.67893 2 7.75 2H16.25C18.3211 2 20 3.67893 20 5.75V10.25H4V5.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.75V18.5C4 20.5711 5.67893 22.25 7.75 22.25H16.25C18.3211 22.25 20 20.5711 20 18.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": "304CA76007BCB28A64756E2164756E21",
  "names": []
}