{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFocusRemove/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 IconFocusRemove: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconFocusRemove\"><Path d=\"M3 8V8.5H4V8H3ZM3.5 3.5V3H3V3.5H3.5ZM3.5 20.5H3V21H3.5V20.5ZM4 16V15.5H3V16H4ZM8 4H8.5V3H8V4ZM16 3H15.5V4H16V3ZM20.5 3.5H21V3H20.5V3.5ZM20 8V8.5H21V8H20ZM21 16V15.5H20V16H21ZM20.5 20.5V21H21V20.5H20.5ZM8 21H8.5V20H8V21ZM16 20H15.5V21H16V20ZM9.87868 9.17157L9.52513 8.81802L8.81802 9.52513L9.17157 9.87868L9.87868 9.17157ZM14.1213 14.8284L14.4749 15.182L15.182 14.4749L14.8284 14.1213L14.1213 14.8284ZM9.17157 14.1213L8.81802 14.4749L9.52513 15.182L9.87868 14.8284L9.17157 14.1213ZM14.8284 9.87868L15.182 9.52513L14.4749 8.81802L14.1213 9.17157L14.8284 9.87868ZM4 8V3.5H3V8H4ZM4 20.5V16H3V20.5H4ZM3.5 4H8V3H3.5V4ZM16 4H20.5V3H16V4ZM20 3.5V8H21V3.5H20ZM20 16V20.5H21V16H20ZM8 20H3.5V21H8V20ZM20.5 20H16V21H20.5V20ZM9.17157 9.87868L11.6464 12.3536L12.3536 11.6464L9.87868 9.17157L9.17157 9.87868ZM11.6464 12.3536L14.1213 14.8284L14.8284 14.1213L12.3536 11.6464L11.6464 12.3536ZM9.87868 14.8284L12.3536 12.3536L11.6464 11.6464L9.17157 14.1213L9.87868 14.8284ZM12.3536 12.3536L14.8284 9.87868L14.1213 9.17157L11.6464 11.6464L12.3536 12.3536Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconFocusRemove;\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,EAAoE,EAAM,KAAK,CAAC,IAAU,CACrG,OAAO,gBAAqoC,EAAroC,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,+gCAA+gC,KAAK,eAAc,CAAI,EAC7oC,EAEc",
  "debugId": "20EA190F458FC7AE64756E2164756E21",
  "names": []
}