{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconDoorHanger/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 IconDoorHanger: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"door-hanger, sign, do-not-disdurb\"><path d=\"M12 1.01489C10.0482 1.01489 8.46608 1.71041 7.30314 2.85208C6.15126 3.9829 5.44615 5.51469 5.15547 7.15011C4.89641 8.60758 6.1275 9.68989 7.41667 9.68989C8.67112 9.68989 9.53196 8.67893 9.74821 7.64402C9.88162 7.00552 10.1205 6.49495 10.4632 6.15048C10.7879 5.824 11.2608 5.58989 12 5.58989C13.3231 5.58989 14.375 6.64219 14.375 7.91489V8.03478C14.375 9.46891 13.4418 10.7527 12.0422 11.2117L8.3653 12.4178C6.36207 13.0748 5 14.9246 5 17.02V19.2649C5 21.336 6.67893 23.0149 8.75 23.0149H15.25C17.3211 23.0149 19 21.336 19 19.2649V7.91489C19 4.09277 15.8545 1.01489 12 1.01489Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconDoorHanger;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAA4qB,EAA5qB,IAAqB,EAAO,UAAU,qCAAoC,gBAAC,OAAD,CAAM,EAAE,mkBAAmkB,KAAK,eAAc,CAAI,GAGtqB",
  "debugId": "A7002F66A7DA284C64756E2164756E21",
  "names": []
}