{
  "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.0803 8.42153 19.9505 9.71575 20.9956 11.2699C21.1191 11.4537 21.2452 11.6411 21.3736 11.8333C21.4922 12.0108 21.5296 12.2305 21.4762 12.4373C21.4229 12.6441 21.284 12.8183 21.0943 12.9163L19 13.9984V18.1667C19 18.5809 18.6642 18.9167 18.25 18.9167H15V21.25C15 21.6642 14.6642 22 14.25 22H6.75C6.33579 22 6 21.6642 6 21.25C6 20.9636 6.00221 20.6872 6.00434 20.4197C6.02228 18.1729 6.03524 16.5495 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,gBAA23B,EAA33B,IAAqB,EAAO,UAAU,0DAAyD,gBAAC,OAAD,CAAM,EAAE,6vBAA6vB,KAAK,eAAc,CAAI,GAGr3B",
  "debugId": "F9CC27B5427A376D64756E2164756E21",
  "names": []
}