{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconVoiceover2/index.tsx"],
  "sourcesContent": [
    "import React, { FC } from \"react\";\nimport { Svg, Mask, Rect, G, SvgProps } from \"react-native-svg\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SvgProps;\n\nexport const CentralIconBase: FC<CentralIconBaseProps> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <Svg\n      {...props}\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    >\n      {masked ? (\n        <>\n          <Mask\n            id={maskId}\n            maskUnits=\"userSpaceOnUse\"\n            x=\"0\"\n            y=\"0\"\n            width=\"24\"\n            height=\"24\"\n          >\n            <Rect width=\"24\" height=\"24\" fill=\"#000\" />\n            <G color=\"#fff\">{children}</G>\n          </Mask>\n          <Rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconVoiceover2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconVoiceover2\"><Path d=\"M9 22H5.43359L3.93359 19.5H1V12.5H3.93359L5.43359 10H9V22Z\" fill=\"currentColor\"/><Path d=\"M11.2461 12.7705C12.1537 13.6214 12.5625 14.845 12.5625 16C12.5625 17.155 12.1537 18.3786 11.2461 19.2295L9.87891 17.7705C10.3045 17.3714 10.5625 16.7199 10.5625 16C10.5625 15.2801 10.3045 14.6286 9.87891 14.2295L11.2461 12.7705Z\" fill=\"currentColor\"/><Path d=\"M14 2C17.471 1.99998 20.8135 4.1012 22.8848 8.03418L23.1299 8.5L22.8848 8.96582C20.8135 12.8988 17.471 15 14 15V13C16.476 13 19.0673 11.5771 20.8555 8.5C19.0673 5.42289 16.476 3.99998 14 4C11.402 4.00002 8.6755 5.56556 6.88477 8.96582L5.11523 8.03418C7.18646 4.1012 10.529 2.00002 14 2Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14 5.25C15.7949 5.25 17.25 6.70507 17.25 8.5C17.25 10.2949 15.7949 11.75 14 11.75C12.2051 11.75 10.75 10.2949 10.75 8.5C10.75 6.70507 12.2051 5.25 14 5.25ZM14 7.25C13.3096 7.25 12.75 7.80964 12.75 8.5C12.75 9.19036 13.3096 9.75 14 9.75C14.6904 9.75 15.25 9.19036 15.25 8.5C15.25 7.80964 14.6904 7.25 14 7.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconVoiceover2;\n"
  ],
  "mappings": "AAAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAQnB,IAAM,EAA4C,EACvD,WACA,OAAO,GACP,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBA8BE,EA9BF,IACM,EACJ,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,QAEJ,EACC,gCACE,gBAUE,EAVF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,EAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAA4B,EAA5B,CAAG,MAAM,QAAQ,CAAW,CAC5B,EACF,gBAAC,EAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GChDN,qBAEA,eAAS,yBAEF,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAA8mC,EAA9mC,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,6DAA6D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wOAAwO,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iSAAiS,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wTAAwT,KAAK,eAAc,CAAI,EACtnC,EAEc",
  "debugId": "D2808E18E16CE3ED64756E2164756E21",
  "names": []
}