{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCircleDashed/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 IconCircleDashed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconCircleDashed\"><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.6952 2.08447C11.1227 2.02871 11.5582 2 12 2C12.4418 2 12.8773 2.02871 13.3048 2.08447L14.2964 2.21382L14.0377 4.19702L13.0461 4.06767C12.7042 4.02307 12.355 4 12 4C11.645 4 11.2958 4.02307 10.9539 4.06767L9.96226 4.19702L9.70357 2.21382L10.6952 2.08447ZM7.92319 5.043L7.13027 5.65232C6.57571 6.07848 6.07848 6.57571 5.65232 7.13027L5.043 7.92319L3.45716 6.70454L4.06649 5.91162C4.59856 5.21922 5.21922 4.59856 5.91162 4.06649L6.70454 3.45716L7.92319 5.043ZM17.2955 3.45716L18.0884 4.06649C18.7808 4.59856 19.4014 5.21922 19.9335 5.91162L20.5428 6.70454L18.957 7.92319L18.3477 7.13027C17.9215 6.57571 17.4243 6.07848 16.8697 5.65232L16.0768 5.043L17.2955 3.45716ZM4.19702 9.96226L4.06767 10.9539C4.02307 11.2958 4 11.645 4 12C4 12.355 4.02307 12.7042 4.06767 13.0461L4.19702 14.0377L2.21382 14.2964L2.08447 13.3048C2.02871 12.8773 2 12.4418 2 12C2 11.5582 2.02871 11.1227 2.08447 10.6952L2.21382 9.70357L4.19702 9.96226ZM21.7862 9.70357L21.9155 10.6952C21.9713 11.1227 22 11.5582 22 12C22 12.4418 21.9713 12.8773 21.9155 13.3048L21.7862 14.2964L19.803 14.0377L19.9323 13.0461C19.9769 12.7042 20 12.355 20 12C20 11.645 19.9769 11.2958 19.9323 10.9539L19.803 9.96226L21.7862 9.70357ZM5.043 16.0768L5.65232 16.8697C6.07848 17.4243 6.57571 17.9215 7.13027 18.3477L7.92319 18.957L6.70454 20.5428L5.91162 19.9335C5.21922 19.4014 4.59856 18.7808 4.06649 18.0884L3.45716 17.2955L5.043 16.0768ZM20.5428 17.2955L19.9335 18.0884C19.4014 18.7808 18.7808 19.4014 18.0884 19.9335L17.2955 20.5428L16.0768 18.957L16.8697 18.3477C17.4243 17.9215 17.9215 17.4243 18.3477 16.8697L18.957 16.0768L20.5428 17.2955ZM9.96226 19.803L10.9539 19.9323C11.2958 19.9769 11.645 20 12 20C12.355 20 12.7042 19.9769 13.0461 19.9323L14.0377 19.803L14.2964 21.7862L13.3048 21.9155C12.8773 21.9713 12.4418 22 12 22C11.5582 22 11.1227 21.9713 10.6952 21.9155L9.70357 21.7862L9.96226 19.803Z\" fill=\"currentColor\"/><Path d=\"M18 12C18 15.3137 15.3137 18 12 18C8.68629 18 6 15.3137 6 12C6 8.68629 8.68629 6 12 6C15.3137 6 18 8.68629 18 12Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCircleDashed;\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,EAAqE,EAAM,KAAK,CAAC,IAAU,CACtG,OAAO,gBAA8mE,EAA9mE,IAAqB,EAAO,OAAO,oDAAmD,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k0DAAk0D,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oHAAoH,KAAK,eAAc,CAAI,EACtnE,EAEc",
  "debugId": "145DB7ADDB76179E64756E2164756E21",
  "names": []
}