{
  "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-IconReferenceImage\"><Path d=\"M15.0006 20.3279C14.9569 20.3627 14.9145 20.3994 14.8746 20.4393L13.7682 21.5457C12.7919 22.5218 11.2093 22.5218 10.233 21.5457L9.17247 20.4852L14.8287 14.8289C14.8882 14.7695 14.945 14.7074 15.0006 14.6443V20.3279Z\" fill=\"currentColor\"/><Path d=\"M8.23204 20.0096C8.17715 20.0034 8.12177 19.9998 8.06602 19.9998H6.50059C5.11988 19.9998 4.00059 18.8805 4.00059 17.4998V15.9998H12.0006C12.0846 15.9998 12.1679 15.9961 12.2506 15.991L8.23204 20.0096Z\" fill=\"currentColor\"/><Path d=\"M20.0104 15.7674C20.0042 15.8226 20.0006 15.8783 20.0006 15.9344V17.4998C20.0006 18.8805 18.8813 19.9998 17.5006 19.9998H16.0006V11.9998C16.0006 11.9155 15.997 11.8318 15.9918 11.7488L20.0104 15.7674Z\" fill=\"currentColor\"/><Path d=\"M9.17247 14.8289C9.23161 14.888 9.29333 14.9445 9.35606 14.9998H3.67247C3.63766 14.9561 3.601 14.9137 3.56114 14.8738L2.4547 13.7674C1.47867 12.7911 1.47862 11.2085 2.4547 10.2322L3.51524 9.17168L9.17247 14.8289Z\" fill=\"currentColor\"/><Path d=\"M12.0006 8.9998C13.6574 8.99982 15.0005 10.3431 15.0006 11.9998C15.0006 13.6566 13.6574 14.9998 12.0006 14.9998C10.3437 14.9998 9.00059 13.6567 9.00059 11.9998C9.00071 10.343 10.3438 8.9998 12.0006 8.9998Z\" fill=\"currentColor\"/><Path d=\"M20.3287 8.9998C20.3635 9.04346 20.4002 9.08592 20.44 9.12578L21.5465 10.2322C22.5226 11.2085 22.5225 12.7911 21.5465 13.7674L20.485 14.8279L14.8287 9.17168C14.7693 9.11222 14.7072 9.05544 14.6441 8.9998H20.3287Z\" fill=\"currentColor\"/><Path d=\"M8.00059 11.9998C8.00059 12.0837 8.00332 12.1672 8.00841 12.2498L3.98985 8.23222C3.99606 8.17698 4.00058 8.12134 4.00059 8.06523V6.4998C4.00071 5.11918 5.11995 3.9998 6.50059 3.9998H8.00059V11.9998Z\" fill=\"currentColor\"/><Path d=\"M10.233 2.4539C11.2093 1.47794 12.7919 1.47792 13.7682 2.4539L14.8287 3.51445L9.17247 9.17168C9.11318 9.23096 9.05609 9.29237 9.00059 9.35527V3.6707C9.04408 3.63599 9.08686 3.60006 9.12657 3.56035L10.233 2.4539Z\" fill=\"currentColor\"/><Path d=\"M15.7672 3.98906C15.8227 3.99534 15.8787 3.99979 15.9352 3.9998H17.5006C18.8812 3.99982 20.0005 5.1192 20.0006 6.4998V7.9998H12.0006C11.916 7.9998 11.832 8.00341 11.7486 8.00859L15.7672 3.98906Z\" 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,gBAAgrE,EAAhrE,IAAqB,EAAO,OAAO,qDAAoD,gBAAC,EAAD,CAAM,EAAE,0NAA0N,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2MAA2M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,uNAAuN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,yMAAyM,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,sNAAsN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,qMAAqM,KAAK,eAAc,CAAI,CACxrE,EAEc",
  "debugId": "F67C89E53FBAE0E964756E2164756E21",
  "names": []
}