{
  "version": 3,
  "sources": ["src/IconReferenceImage/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\nimport { Path } from \"react-native-svg\";\n\nexport const IconReferenceImage: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1.5-IconReferenceImage\"><Path d=\"M14.4986 20.8134L13.943 21.3691C12.8691 22.4428 11.1282 22.4428 10.0543 21.3691L9.16955 20.4843L14.4986 15.1562V20.8134Z\" fill=\"currentColor\"/><Path d=\"M7.53381 19.9999H6.74865C5.22987 19.9999 3.99865 18.7687 3.99865 17.2499V15.9999H11.5338L7.53381 19.9999Z\" fill=\"currentColor\"/><Path d=\"M19.9986 16.4648V17.2499C19.9986 18.7687 18.7674 19.9999 17.2486 19.9999H15.9986V12.4648L19.9986 16.4648Z\" fill=\"currentColor\"/><Path d=\"M21.3678 10.0556C22.4415 11.1295 22.4414 12.8704 21.3678 13.9443L20.483 14.8281L15.1549 9.49995H20.8121L21.3678 10.0556Z\" fill=\"currentColor\"/><Path d=\"M8.8424 14.4999H3.18517L2.62951 13.9443C1.5558 12.8704 1.55578 11.1295 2.62951 10.0556L3.5133 9.17085L8.8424 14.4999Z\" fill=\"currentColor\"/><Path d=\"M11.9986 9.49995C13.3793 9.49998 14.4986 10.6193 14.4986 11.9999C14.4986 13.3806 13.3793 14.4999 11.9986 14.4999C10.6179 14.4999 9.49865 13.3807 9.49865 11.9999C9.49871 10.6193 10.618 9.49995 11.9986 9.49995Z\" fill=\"currentColor\"/><Path d=\"M7.99865 11.5351L3.99865 7.5351V6.74995C3.99871 5.23122 5.22991 3.99995 6.74865 3.99995H7.99865V11.5351Z\" fill=\"currentColor\"/><Path d=\"M10.0543 2.63081C11.1282 1.55717 12.8691 1.55713 13.943 2.63081L14.8268 3.5146L9.49865 8.84272V3.18647L10.0543 2.63081Z\" fill=\"currentColor\"/><Path d=\"M17.2486 3.99995C18.7674 3.99998 19.9986 5.23124 19.9986 6.74995V7.99995H12.4635L16.4635 3.99995H17.2486Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconReferenceImage;\n",
    "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\ntype Props = CentralIconBaseProps;\n\nconst ModernCentralIconBase: React.FC<Props> = (props) => {\n  const instanceId = React.useId();\n  return <CentralIconSvg {...props} instanceId={instanceId} />;\n};\n\nlet nextLegacyId = 0;\n\n// React's Server Components runtime exposes useId but not Component. Only\n// define the legacy class when it is needed, so modern imports stay RSC-safe.\nconst LegacyCentralIconBase =\n  typeof React.useId === \"function\"\n    ? undefined\n    : class extends React.Component<\n        { iconProps: Props },\n        { instanceId?: string }\n      > {\n        state: { instanceId?: string } = {};\n\n        componentDidMount() {\n          // Defer legacy IDs until mount so server and initial client markup agree.\n          this.setState({ instanceId: `legacy-${++nextLegacyId}` });\n        }\n\n        render() {\n          return <CentralIconSvg {...this.props.iconProps} instanceId={this.state.instanceId} />;\n        }\n      };\n\nexport const CentralIconBase: React.FC<Props> = (props) =>\n  LegacyCentralIconBase ? (\n    <LegacyCentralIconBase iconProps={props} />\n  ) : (\n    <ModernCentralIconBase {...props} />\n  );\n\nconst CentralIconSvg: FC<CentralIconBaseProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\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={uniqueMaskId}\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(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </Svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBACA,cAAS,UAAK,UAAM,OAAM,yBAU1B,IAAM,EAAyC,CAAC,IAAU,CACxD,IAAM,EAAa,EAAM,MAAM,EAC/B,OAAO,gBAAC,EAAD,IAAoB,EAAO,WAAY,EAAY,GAGxD,EAAe,EAIb,EACJ,OAAO,EAAM,QAAU,WACnB,OACA,cAAc,EAAM,SAGlB,CACA,MAAiC,CAAC,EAElC,iBAAiB,EAAG,CAElB,KAAK,SAAS,CAAE,WAAY,UAAU,EAAE,GAAe,CAAC,EAG1D,MAAM,EAAG,CACP,OAAO,gBAAC,EAAD,IAAoB,KAAK,MAAM,UAAW,WAAY,KAAK,MAAM,WAAY,EAExF,EAEO,EAAmC,CAAC,IAC/C,EACE,gBAAC,EAAD,CAAuB,UAAW,EAAO,EAEzC,gBAAC,EAAD,IAA2B,EAAO,EAGhC,EAAqE,EACzE,WACA,OAAO,GACP,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,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,GDrFN,eAAS,yBAEF,IAAM,EAAuE,EAAM,KAAK,CAAC,IACvF,gBAA08C,EAA18C,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,2HAA2H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4GAA4G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4GAA4G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2HAA2H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,wHAAwH,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2GAA2G,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4GAA4G,KAAK,eAAc,CAAI,CACl9C,EAEc",
  "debugId": "72B36B093F9D2E6164756E2164756E21",
  "names": []
}