{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconTextToSpeach/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 IconTextToSpeach: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"text-to-speach\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 3.75C2 3.33579 2.33579 3 2.75 3H11.25C11.6642 3 12 3.33579 12 3.75V5.25C12 5.66421 11.6642 6 11.25 6C10.8358 6 10.5 5.66421 10.5 5.25V4.5H7.75V11.5H8.75C9.16421 11.5 9.5 11.8358 9.5 12.25C9.5 12.6642 9.16421 13 8.75 13H5.25C4.83579 13 4.5 12.6642 4.5 12.25C4.5 11.8358 4.83579 11.5 5.25 11.5H6.25V4.5H3.5V5.25C3.5 5.66421 3.16421 6 2.75 6C2.33579 6 2 5.66421 2 5.25V3.75ZM14.25 7C14.6642 7 15 7.33579 15 7.75V20.25C15 20.6642 14.6642 21 14.25 21C13.8358 21 13.5 20.6642 13.5 20.25V7.75C13.5 7.33579 13.8358 7 14.25 7ZM17.75 10C18.1642 10 18.5 10.3358 18.5 10.75V17.25C18.5 17.6642 18.1642 18 17.75 18C17.3358 18 17 17.6642 17 17.25V10.75C17 10.3358 17.3358 10 17.75 10ZM21.25 12C21.6642 12 22 12.3358 22 12.75V15.25C22 15.6642 21.6642 16 21.25 16C20.8358 16 20.5 15.6642 20.5 15.25V12.75C20.5 12.3358 20.8358 12 21.25 12ZM10.75 14C11.1642 14 11.5 14.3358 11.5 14.75V17.25C11.5 17.6642 11.1642 18 10.75 18C10.3358 18 10 17.6642 10 17.25V14.75C10 14.3358 10.3358 14 10.75 14Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconTextToSpeach;\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,EAAmD,CAAC,IAAU,CACzE,OAAO,gBAA+kC,EAA/kC,IAAqB,EAAO,UAAU,kBAAiB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,m9BAAm9B,KAAK,eAAc,CAAI,GAGzkC",
  "debugId": "041A66BF55B6C61064756E2164756E21",
  "names": []
}