{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconAdjustPhoto/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 IconAdjustPhoto: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-outlined-radius-0-stroke-1-IconAdjustPhoto\"><Path d=\"M19.5 12C19.5 16.1421 16.1421 19.5 12 19.5C7.85786 19.5 4.5 16.1421 4.5 12C4.5 7.85786 7.85786 4.5 12 4.5C16.1421 4.5 19.5 7.85786 19.5 12Z\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M7 17L12 12\" stroke=\"currentColor\" strokeLinecap=\"square\"/><Path d=\"M1.5 12C1.5 12.2761 1.27614 12.5 1 12.5C0.723858 12.5 0.5 12.2761 0.5 12C0.5 11.7239 0.723858 11.5 1 11.5C1.27614 11.5 1.5 11.7239 1.5 12Z\" stroke=\"currentColor\"/><Path d=\"M12.5 1C12.5 1.27614 12.2761 1.5 12 1.5C11.7239 1.5 11.5 1.27614 11.5 1C11.5 0.723858 11.7239 0.5 12 0.5C12.2761 0.5 12.5 0.723858 12.5 1Z\" stroke=\"currentColor\"/><Path d=\"M23.5 12C23.5 12.2761 23.2761 12.5 23 12.5C22.7239 12.5 22.5 12.2761 22.5 12C22.5 11.7239 22.7239 11.5 23 11.5C23.2761 11.5 23.5 11.7239 23.5 12Z\" stroke=\"currentColor\"/><Path d=\"M4.57538 19.4246C4.77064 19.6199 4.77064 19.9365 4.57538 20.1317C4.38012 20.327 4.06353 20.327 3.86827 20.1317C3.67301 19.9365 3.67301 19.6199 3.86827 19.4246C4.06353 19.2294 4.38012 19.2294 4.57538 19.4246Z\" stroke=\"currentColor\"/><Path d=\"M20.1317 19.4246C20.327 19.6199 20.327 19.9365 20.1317 20.1317C19.9365 20.327 19.6199 20.327 19.4246 20.1317C19.2294 19.9365 19.2294 19.6199 19.4246 19.4246C19.6199 19.2294 19.9365 19.2294 20.1317 19.4246Z\" stroke=\"currentColor\"/><Path d=\"M4.57538 3.86827C4.77064 4.06353 4.77064 4.38012 4.57538 4.57538C4.38012 4.77064 4.06353 4.77064 3.86827 4.57538C3.67301 4.38012 3.67301 4.06353 3.86827 3.86827C4.06353 3.67301 4.38012 3.67301 4.57538 3.86827Z\" stroke=\"currentColor\"/><Path d=\"M20.1317 3.86827C20.327 4.06353 20.327 4.38012 20.1317 4.57538C19.9365 4.77064 19.6199 4.77064 19.4246 4.57538C19.2294 4.38012 19.2294 4.06353 19.4246 3.86827C19.6199 3.67301 19.9365 3.67301 20.1317 3.86827Z\" stroke=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconAdjustPhoto;\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,gBAAgzD,EAAhzD,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,8IAA8I,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,cAAc,OAAO,eAAe,cAAc,SAAQ,EAAE,gBAAC,EAAD,CAAM,EAAE,6IAA6I,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6IAA6I,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oJAAoJ,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oNAAoN,OAAO,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,OAAO,eAAc,CAAI,EACxzD,EAEc",
  "debugId": "F58F80537942439E64756E2164756E21",
  "names": []
}