{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconKickball/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 IconKickball: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconKickball\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12 22C17.5228 22 22 17.5228 22 12C22 6.47715 17.5228 2 12 2C6.47715 2 2 6.47715 2 12C2 17.5228 6.47715 22 12 22ZM10.5 7C10.6515 7 10.7978 7.02247 10.9357 7.06427C10.7491 6.44835 10.1769 6 9.5 6C8.67157 6 8 6.67157 8 7.5C8 8.17688 8.44835 8.74905 9.06427 8.93573C9.02247 8.79784 9 8.65154 9 8.5C9 7.67157 9.67157 7 10.5 7ZM7.5 10C7.65154 10 7.79784 10.0225 7.93573 10.0643C7.74905 9.44835 7.17688 9 6.5 9C5.67157 9 5 9.67157 5 10.5C5 11.1769 5.44835 11.7491 6.06427 11.9357C6.02247 11.7978 6 11.6515 6 11.5C6 10.6716 6.67157 10 7.5 10ZM9.93573 13.0643C9.79784 13.0225 9.65154 13 9.5 13C8.67157 13 8 13.6716 8 14.5C8 14.6515 8.02247 14.7978 8.06427 14.9357C7.44835 14.7491 7 14.1769 7 13.5C7 12.6716 7.67157 12 8.5 12C9.17688 12 9.74905 12.4483 9.93573 13.0643ZM12.5 10C12.6515 10 12.7978 10.0225 12.9357 10.0643C12.7491 9.44835 12.1769 9 11.5 9C10.6716 9 10 9.67157 10 10.5C10 11.1769 10.4483 11.7491 11.0643 11.9357C11.0225 11.7978 11 11.6515 11 11.5C11 10.6716 11.6716 10 12.5 10Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconKickball;\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,gBAAgnC,EAAhnC,IAAqB,EAAO,OAAO,gDAA+C,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,y9BAAy9B,KAAK,eAAc,CAAI,EACxnC,EAEc",
  "debugId": "B608D3A0B721D9AE64756E2164756E21",
  "names": []
}