{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconMedicinePill2/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 IconMedicinePill2: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconMedicinePill2\"><Path d=\"M20.1241 11.944C20.4338 11.7351 20.7144 11.5091 20.9589 11.2657C21.5641 10.6633 22 9.89682 22 9C22 8.10318 21.5641 7.33672 20.9589 6.73431C20.3576 6.1357 19.5381 5.6426 18.6056 5.24994C16.7364 4.4629 14.2235 4 11.5 4C9.39621 4 7.41816 4.2762 5.76535 4.76464L20.1241 11.944Z\" fill=\"currentColor\"/><Path d=\"M3.32097 5.77852C2.83208 6.06062 2.39811 6.37887 2.04105 6.73431C1.43591 7.33672 1 8.10318 1 9C1 9.89682 1.43591 10.6633 2.04105 11.2657C2.64239 11.8643 3.46186 12.3574 4.39443 12.7501C6.26364 13.5371 8.77646 14 11.5 14C13.8694 14 16.0793 13.6497 17.8446 13.0404L3.32097 5.77852Z\" fill=\"currentColor\"/><Path d=\"M1 13.0255C1.77435 13.693 2.69212 14.2034 3.61831 14.5933C5.78764 15.5067 8.57611 16 11.5 16C14.4239 16 17.2124 15.5067 19.3817 14.5933C20.3079 14.2034 21.2257 13.693 22 13.0255V15.0001C22 15.8969 21.5641 16.6633 20.9589 17.2657C20.3576 17.8644 19.5381 18.3575 18.6056 18.7501C16.7364 19.5371 14.2235 20 11.5 20C8.77646 20 6.26364 19.5371 4.39443 18.7501C3.46186 18.3575 2.64239 17.8644 2.04105 17.2657C1.43591 16.6633 1 15.8969 1 15.0001V13.0255Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconMedicinePill2;\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,EAAsE,EAAM,KAAK,CAAC,IAAU,CACvG,OAAO,gBAAgqC,EAAhqC,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0RAA0R,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kcAAkc,KAAK,eAAc,CAAI,EACxqC,EAEc",
  "debugId": "6F56BEA31872A63364756E2164756E21",
  "names": []
}