{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBaseball/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 IconBaseball: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconBaseball\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12ZM5.33309 6.03682C5.47251 6.16161 5.60753 6.29121 5.7379 6.42537L7.17223 5.03156C7.0095 4.8641 6.84096 4.70232 6.66691 4.54655L5.33309 6.03682ZM17.3331 4.54655C17.159 4.70232 16.9905 4.8641 16.8278 5.03156L18.2621 6.42537C18.3925 6.29121 18.5275 6.16161 18.6669 6.03682L17.3331 4.54655ZM6.46149 7.28206C6.68172 7.5831 6.88134 7.89998 7.05833 8.23063L8.8216 7.28676C8.60024 6.87323 8.35073 6.47719 8.07566 6.10119L6.46149 7.28206ZM15.9243 6.10119C15.6493 6.47719 15.3998 6.87323 15.1784 7.28676L16.9417 8.23063C17.1187 7.89998 17.3183 7.5831 17.5385 7.28206L15.9243 6.10119ZM7.5161 9.25274C7.64332 9.60069 7.74705 9.95997 7.82537 10.3287L9.78172 9.91317C9.68368 9.45157 9.55379 9.00168 9.39448 8.56595L7.5161 9.25274ZM14.6055 8.56595C14.4462 9.00168 14.3163 9.45157 14.2183 9.91317L16.1746 10.3287C16.253 9.95997 16.3567 9.60069 16.4839 9.25274L14.6055 8.56595ZM7.98064 11.4385C7.99347 11.6238 8 11.8111 8 12C8 12.1889 7.99347 12.3762 7.98064 12.5615L9.97587 12.6996C9.99187 12.4683 10 12.235 10 12C10 11.765 9.99187 11.5317 9.97587 11.3004L7.98064 11.4385ZM14.0241 11.3004C14.0081 11.5317 14 11.765 14 12C14 12.235 14.0081 12.4683 14.0241 12.6996L16.0194 12.5615C16.0065 12.3762 16 12.1889 16 12C16 11.8111 16.0065 11.6238 16.0194 11.4385L14.0241 11.3004ZM7.82537 13.6713C7.74705 14.04 7.64332 14.3993 7.5161 14.7473L9.39448 15.4341C9.55379 14.9983 9.68368 14.5484 9.78172 14.0868L7.82537 13.6713ZM14.2183 14.0868C14.3163 14.5484 14.4462 14.9983 14.6055 15.4341L16.4839 14.7473C16.3567 14.3993 16.253 14.04 16.1746 13.6713L14.2183 14.0868ZM7.05833 15.7694C6.88134 16.1 6.68172 16.4169 6.46149 16.718L8.07566 17.8988C8.35073 17.5228 8.60024 17.1268 8.8216 16.7132L7.05833 15.7694ZM15.1784 16.7132C15.3998 17.1268 15.6493 17.5228 15.9243 17.8988L17.5385 16.718C17.3183 16.4169 17.1187 16.1 16.9417 15.7694L15.1784 16.7132ZM5.7379 17.5746C5.60753 17.7088 5.47251 17.8384 5.33309 17.9632L6.66691 19.4535C6.84096 19.2977 7.0095 19.1359 7.17223 18.9684L5.7379 17.5746ZM16.8278 18.9684C16.9905 19.1359 17.159 19.2977 17.3331 19.4535L18.6669 17.9632C18.5275 17.8384 18.3925 17.7088 18.2621 17.5746L16.8278 18.9684Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconBaseball;\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,EAAiE,EAAM,KAAK,CAAC,IAAU,CAClG,OAAO,gBAAm0E,EAAn0E,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,4qEAA4qE,KAAK,eAAc,CAAI,EAC30E,EAEc",
  "debugId": "C4429F2230B296E964756E2164756E21",
  "names": []
}