{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconShapesPlusXSquareCircle/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 IconShapesPlusXSquareCircle: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-2-IconShapesPlusXSquareCircle\"><Path d=\"M17 3C14.7909 3 13 4.79086 13 7C13 9.20914 14.7909 11 17 11C19.2091 11 21 9.20914 21 7C21 4.79086 19.2091 3 17 3Z\" fill=\"currentColor\"/><Path d=\"M11 13H3V21H11V13Z\" fill=\"currentColor\"/><Path d=\"M8 3V6H11V8H8V11H6V8H3V6H6V3H8Z\" fill=\"currentColor\"/><Path d=\"M18.4142 16.9996L20.5355 14.8783L19.1213 13.4641L17 15.5854L14.8787 13.4641L13.4645 14.8783L15.5858 16.9996L13.4645 19.1209L14.8787 20.5352L17 18.4138L19.1213 20.5352L20.5355 19.1209L18.4142 16.9996Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconShapesPlusXSquareCircle;\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,EAAgF,EAAM,KAAK,CAAC,IAAU,CACjH,OAAO,gBAA4kB,EAA5kB,IAAqB,EAAO,OAAO,+DAA8D,gBAAC,EAAD,CAAM,EAAE,oHAAoH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qBAAqB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kCAAkC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0MAA0M,KAAK,eAAc,CAAI,EACplB,EAEc",
  "debugId": "F8CAE4D0ABE0BBD864756E2164756E21",
  "names": []
}