{
  "version": 3,
  "sources": ["src/IconImagineHead/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 IconImagineHead: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconImagineHead\"><Path d=\"M3.42676 10.7295C3.69986 10.6891 3.95364 10.8773 3.99414 11.1504C4.08599 11.7713 4.36358 12.3947 4.75195 13.0459C5.14327 13.702 5.61754 14.3402 6.09375 15.0234C7.00752 16.3345 7.95781 17.8374 7.66797 19.5195C7.66706 19.5248 7.66611 19.53 7.66504 19.5352L7.13477 22.1016C7.07875 22.3718 6.8142 22.545 6.54395 22.4893C6.27352 22.4333 6.09936 22.1689 6.15527 21.8984L6.68262 19.3428C6.89014 18.1208 6.21533 16.9472 5.27344 15.5957C4.82113 14.9467 4.30911 14.2553 3.89355 13.5586C3.47509 12.857 3.12517 12.1033 3.00586 11.2969C2.96546 11.0238 3.15366 10.77 3.42676 10.7295Z\" fill=\"currentColor\"/><Path d=\"M10.8896 2C13.0658 2.00006 14.6375 2.39325 15.7725 3.11816C16.919 3.85054 17.5637 4.88557 17.9512 6.04688C18.2986 7.08755 19.339 7.63369 20.6064 8.20508C21.4814 8.59961 21.7307 9.68962 21.1523 10.4355L20.4648 11.3213C21.0635 13.1326 21.2129 14.4131 21.0049 15.3506C20.7748 16.3872 20.1314 16.9291 19.4219 17.2695C19.0803 17.4334 18.7152 17.5553 18.3818 17.665C18.0377 17.7784 17.7276 17.8785 17.4443 18.0059C16.9014 18.2499 16.5241 18.5604 16.3643 19.1572L15.6182 22.1221C15.5507 22.3898 15.2794 22.5517 15.0117 22.4844C14.744 22.4169 14.5811 22.1457 14.6484 21.8779L15.3955 18.9131L15.3965 18.9082C15.66 17.9122 16.33 17.4103 17.0342 17.0938C17.3752 16.9405 17.7406 16.8231 18.0693 16.7148C18.4088 16.6031 18.7146 16.4999 18.9893 16.3682C19.5128 16.117 19.8839 15.7846 20.0283 15.1338C20.1849 14.428 20.09 13.2858 19.4355 11.3867C19.3806 11.2272 19.4103 11.0503 19.5137 10.917L20.3623 9.82227C20.5539 9.57498 20.466 9.23934 20.1953 9.11719C19.0024 8.57942 17.5088 7.88218 17.002 6.36328C16.6665 5.3579 16.1397 4.53925 15.2344 3.96094C14.3176 3.37533 12.9572 3.00006 10.8896 3C10.6135 3 10.3896 2.77614 10.3896 2.5C10.3896 2.22386 10.6135 2 10.8896 2Z\" fill=\"currentColor\"/><Path d=\"M6 2C6.41775 2 6.79242 2.25756 6.94238 2.64746L7.53223 4.18066C7.58301 4.3127 7.6873 4.41699 7.81934 4.46777L9.35254 5.05762C9.74244 5.20758 10 5.58225 10 6C10 6.41775 9.74244 6.79242 9.35254 6.94238L7.81934 7.53223C7.6873 7.58301 7.58301 7.6873 7.53223 7.81934L6.94238 9.35254C6.79242 9.74244 6.41775 10 6 10C5.58225 10 5.20758 9.74244 5.05762 9.35254L4.46777 7.81934C4.41699 7.6873 4.3127 7.58301 4.18066 7.53223L2.64746 6.94238C2.25756 6.79242 2 6.41775 2 6C2 5.58225 2.25756 5.20758 2.64746 5.05762L4.18066 4.46777C4.3127 4.41699 4.41699 4.3127 4.46777 4.18066L5.05762 2.64746C5.20758 2.25756 5.58225 2 6 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconImagineHead;\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,EAAoE,EAAM,KAAK,CAAC,IACpF,gBAAi9E,EAAj9E,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,4jBAA4jB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,koCAAkoC,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,smBAAsmB,KAAK,eAAc,CAAI,CACz9E,EAEc",
  "debugId": "5B8B5A9381DDA22D64756E2164756E21",
  "names": []
}