{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFocusMode/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 IconFocusMode: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"focus-mode, hearing, headphones, music, do-not-disdurb\"><path d=\"M3 9.94444C3 6.23119 5.55244 3.11496 9 2.24309V5.84451C7.70608 6.17755 6.75 7.35212 6.75 8.75V10.25C6.75 11.9069 8.09315 13.25 9.75 13.25C11.4069 13.25 12.75 11.9069 12.75 10.25V8.75C12.75 7.35212 11.7939 6.17755 10.5 5.84451V2.01316C10.6529 2.00443 10.807 2 10.9621 2C14.1314 2 17.1621 3.53044 18.4145 6.72377C19.0245 8.27929 19.812 9.5063 20.7489 10.9031C21.3303 11.77 21.0288 12.9501 20.1001 13.43L19.1352 13.9285C19.0522 13.9714 19 14.0571 19 14.1506V15.1667C19 17.2377 17.3211 18.9167 15.25 18.9167C15.1119 18.9167 15 19.0286 15 19.1667V20.25C15 21.2165 14.2165 22 13.25 22H7.75C6.78285 22 5.99798 21.2141 6.00705 20.2428C6.02718 18.0878 5.9896 16.4915 4.69469 14.8447C3.63342 13.4951 3 11.7926 3 9.94444Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFocusMode;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAu0B,EAAv0B,IAAqB,EAAO,UAAU,0DAAyD,gBAAC,OAAD,CAAM,EAAE,ysBAAysB,KAAK,eAAc,CAAI,GAGj0B",
  "debugId": "4F715EFEE94762F864756E2164756E21",
  "names": []
}