{
  "version": 3,
  "sources": ["src/IconQuickAi/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 IconQuickAi: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconQuickAi\"><Path d=\"M10.6464 12.6465C10.8417 12.4512 11.1582 12.4512 11.3535 12.6465C11.5487 12.8417 11.5487 13.1583 11.3535 13.3535L4.85348 19.8535C4.65822 20.0488 4.34171 20.0488 4.14645 19.8535C3.95118 19.6583 3.95118 19.3417 4.14645 19.1465L10.6464 12.6465Z\" fill=\"currentColor\"/><Path d=\"M12.1464 16.1465C12.3417 15.9512 12.6582 15.9512 12.8535 16.1465C13.0487 16.3417 13.0487 16.6583 12.8535 16.8535L9.85348 19.8535C9.65822 20.0488 9.34171 20.0488 9.14645 19.8535C8.95118 19.6583 8.95118 19.3417 9.14645 19.1465L12.1464 16.1465Z\" fill=\"currentColor\"/><Path d=\"M7.14645 11.1465C7.34171 10.9512 7.65822 10.9512 7.85348 11.1465C8.04872 11.3417 8.04872 11.6583 7.85348 11.8535L4.85348 14.8535C4.65822 15.0488 4.34171 15.0488 4.14645 14.8535C3.95118 14.6583 3.95118 14.3417 4.14645 14.1465L7.14645 11.1465Z\" fill=\"currentColor\"/><Path d=\"M15.5 2C16.0683 2.00002 16.5782 2.35039 16.7822 2.88086L17.748 5.39062C17.9004 5.78676 18.2132 6.09959 18.6093 6.25195L21.1191 7.21777C21.6496 7.42181 22 7.93165 22 8.5C22 9.06835 21.6496 9.57819 21.1191 9.78223L18.6093 10.748C18.2132 10.9004 17.9004 11.2132 17.748 11.6094L16.7822 14.1191C16.5782 14.6496 16.0683 15 15.5 15C14.9316 15 14.4218 14.6496 14.2177 14.1191L13.2519 11.6094C13.0996 11.2132 12.7867 10.9004 12.3906 10.748L9.88082 9.78223C9.35034 9.5782 8.99996 9.06836 8.99996 8.5C8.99996 7.93164 9.35034 7.4218 9.88082 7.21777L12.3906 6.25195C12.7867 6.09959 13.0996 5.78675 13.2519 5.39062L14.2177 2.88086C14.4218 2.35039 14.9316 2 15.5 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconQuickAi;\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,EAAgE,EAAM,KAAK,CAAC,IAChF,gBAA+iD,EAA/iD,IAAqB,EAAO,OAAO,8CAA6C,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oPAAoP,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,6oBAA6oB,KAAK,eAAc,CAAI,CACvjD,EAEc",
  "debugId": "A5CC66A226E9FEF164756E2164756E21",
  "names": []
}