{
  "version": 3,
  "sources": ["src/IconBrainSideview/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBrainSideview: React.NamedExoticComponent<CentralIconBaseProps> = React.memo(React.forwardRef<SVGSVGElement, CentralIconBaseProps>((props, ref) => {\n  return <CentralIconBase {...props} ref={ref} ariaLabel={\"brain-sideview, thinking\"} maskId=\"square-filled-radius-0-stroke-1-IconBrainSideview\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.6027 3C13.8954 3.01668 14.8706 3.45503 15.6721 4.31152L15.673 4.3125C15.7 4.34144 15.763 4.38186 15.9269 4.40918C16.0055 4.42225 16.0925 4.43029 16.1926 4.4375C16.2843 4.44411 16.402 4.45109 16.507 4.46289H16.509C17.9776 4.6319 18.9215 5.56682 19.4953 6.8291C19.6873 7.25216 20.0303 7.51653 20.5051 7.90723C20.9567 8.27886 21.4943 8.74728 21.757 9.54785L21.839 9.82129C22.0152 10.4665 22.0719 11.1599 21.882 11.8447L21.881 11.8467C21.8278 12.0365 21.8233 12.2245 21.8439 12.4385C21.8545 12.5477 21.8706 12.6593 21.8898 12.7832C21.9085 12.9031 21.9305 13.0387 21.9465 13.1758C22.0935 14.4352 21.777 15.5704 20.9201 16.4951L20.9191 16.4961C20.5854 16.8542 20.1528 17.1659 19.8537 17.418C19.2583 17.9216 18.5679 18.3025 17.7541 18.4111C17.0925 18.4992 16.4187 18.4363 15.7678 18.1201C15.123 18.4859 14.4804 18.8791 13.7951 19.0723C13.0586 19.2798 12.2828 19.2607 11.3517 18.8711L11.2805 18.8477C11.11 18.8047 10.9071 18.8472 10.6428 19.0283C10.3357 19.2389 10.0216 19.5905 9.73065 19.999C9.44422 20.4012 9.20158 20.8272 9.02948 21.1562C8.944 21.3197 8.87666 21.4577 8.83124 21.5537C8.80855 21.6017 8.79081 21.64 8.77948 21.665L8.76483 21.6992L8.76385 21.7002L8.63299 22H5.08612L5.17206 21.4258C5.19586 21.2668 5.25494 21.0336 5.31073 20.8086C5.37011 20.5691 5.43472 20.3064 5.48456 20.0479C5.53503 19.786 5.56581 19.5504 5.56561 19.3652C5.56542 19.2086 5.54257 19.1489 5.54022 19.1396L5.54706 19.1465C5.14764 18.6809 4.79249 18.2518 4.38202 17.9092C3.17279 16.8979 2.61921 15.5841 2.72674 13.9629C2.72857 13.9357 2.72459 13.8836 2.69745 13.791C2.66697 13.6871 2.6348 13.6112 2.58612 13.4688L2.45917 13.1387C2.4128 13.0274 2.36175 12.9108 2.3078 12.7783C2.20728 12.5314 2.10323 12.2473 2.05585 11.9395C1.82663 10.4496 2.31298 9.18011 3.33124 8.16699L3.33221 8.16504C3.48038 8.01898 3.60305 7.83919 3.65936 7.67676L3.80975 7.27637C4.18028 6.36402 4.69576 5.61176 5.36151 5.03809C6.12399 4.38124 7.0591 3.97993 8.13885 3.82324C8.51703 3.76825 8.88977 3.79553 9.22284 3.83301C9.57756 3.87294 9.86111 3.91915 10.1633 3.93457C10.1932 3.93609 10.2283 3.93342 10.257 3.92676C10.2681 3.92416 10.2754 3.92059 10.2795 3.91895C10.9885 3.36623 11.8037 3.01449 12.5871 3H12.6027ZM15.8019 18.1016L15.8 18.1025C15.8014 18.1018 15.8033 18.1014 15.8049 18.1006L15.8019 18.1016Z\" fill=\"currentColor\"/></CentralIconBase>;\n}));\n\nexport default IconBrainSideview;\n",
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\n  mode?: \"masked\" | \"raw\";\n  maskId?: string;\n} & SVGProps<SVGSVGElement>;\n\ntype Props = CentralIconBaseProps & {\n  ariaLabel?: string;\n  /** Internal generated shapes that contain instance-scoped SVG references. */\n  renderShapes?: (instanceId: string) => React.ReactNode;\n};\ntype RenderProps = Props & { svgRef?: React.ForwardedRef<SVGSVGElement> };\n\nconst ModernCentralIconBase: React.FC<RenderProps> = (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: RenderProps },\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 (\n            <CentralIconSvg\n              {...this.props.iconProps}\n              instanceId={this.state.instanceId}\n            />\n          );\n        }\n      };\n\nexport const CentralIconBase = React.forwardRef<SVGSVGElement, Props>(\n  (props, ref) =>\n    LegacyCentralIconBase ? (\n      <LegacyCentralIconBase iconProps={{ ...props, svgRef: ref }} />\n    ) : (\n      <ModernCentralIconBase {...props} svgRef={ref} />\n    ),\n);\nCentralIconBase.displayName = \"CentralIconBase\";\n\nconst CentralIconSvg: React.FC<RenderProps & { instanceId?: string }> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden,\n  \"aria-hidden\": ariaHiddenAttribute,\n  \"aria-label\": ariaLabelAttribute,\n  role,\n  svgRef,\n  renderShapes,\n  style,\n  mode = \"masked\",\n  maskId,\n  instanceId,\n  ...props\n}) => {\n  const uniqueMaskId = instanceId ? `${maskId}-${instanceId}` : maskId;\n  const masked = mode !== \"raw\" && !!maskId;\n  const hidden = ariaHiddenAttribute ?? ariaHidden ?? true;\n  const isHidden = hidden === true || hidden === \"true\";\n  const label = ariaLabelAttribute ?? ariaLabel;\n  const shapes = renderShapes\n    ? renderShapes(uniqueMaskId ?? instanceId ?? \"icon\")\n    : children;\n  return (\n    <svg\n      {...props}\n      ref={svgRef}\n      aria-hidden={hidden}\n      aria-label={ariaLabelAttribute}\n      role={role ?? (isHidden ? undefined : \"img\")}\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      xmlns=\"http://www.w3.org/2000/svg\"\n      style={{ color, ...style }}\n    >\n      {label && !isHidden && <title>{label}</title>}\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 fill=\"none\" style={{ color: \"#fff\" }}>\n              {shapes}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${uniqueMaskId})`}\n          />\n        </>\n      ) : (\n        shapes\n      )}\n    </svg>\n  );\n};\n"
  ],
  "mappings": "AAAA,qBCAA,qBAiBA,IAAM,EAA+C,CAAC,IAAU,CAC9D,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,OACE,gBAAC,EAAD,IACM,KAAK,MAAM,UACf,WAAY,KAAK,MAAM,WACzB,EAGN,EAEO,EAAkB,EAAM,WACnC,CAAC,EAAO,IACN,EACE,gBAAC,EAAD,CAAuB,UAAW,IAAK,EAAO,OAAQ,CAAI,EAAG,EAE7D,gBAAC,EAAD,IAA2B,EAAO,OAAQ,EAAK,CAErD,EACA,EAAgB,YAAc,kBAE9B,IAAM,EAAkE,EACtE,WACA,OAAO,GACP,YACA,QACA,aACA,cAAe,EACf,aAAc,EACd,OACA,SACA,eACA,QACA,OAAO,SACP,SACA,gBACG,KACC,CACJ,IAAM,EAAe,EAAa,GAAG,KAAU,IAAe,EACxD,EAAS,IAAS,OAAS,CAAC,CAAC,EAC7B,EAAS,GAAuB,GAAc,GAC9C,EAAW,IAAW,IAAQ,IAAW,OACzC,EAAQ,GAAsB,EAC9B,EAAS,EACX,EAAa,GAAgB,GAAc,MAAM,EACjD,EACJ,OACE,gBAuCE,MAvCF,IACM,EACJ,IAAK,EACL,cAAa,EACb,aAAY,EACZ,KAAM,IAAS,EAAW,OAAY,OACtC,MAAO,OAAO,IAAS,SAAW,GAAG,MAAW,EAChD,OAAQ,OAAO,IAAS,SAAW,GAAG,MAAW,EACjD,QAAQ,YACR,KAAK,OACL,MAAM,6BACN,MAAO,CAAE,WAAU,CAAM,GAExB,GAAS,CAAC,GAAY,gBAAgB,QAAhB,KAAQ,CAAQ,EACtC,EACC,gCACE,gBAYE,OAZF,CACE,GAAI,EACJ,UAAU,iBACV,EAAE,IACF,EAAE,IACF,MAAM,KACN,OAAO,MAEP,gBAAC,OAAD,CAAM,MAAM,KAAK,OAAO,KAAK,KAAK,OAAO,EACzC,gBAEE,IAFF,CAAG,KAAK,OAAO,MAAO,CAAE,MAAO,MAAO,GACnC,CACD,CACF,EACF,gBAAC,OAAD,CACE,MAAM,KACN,OAAO,KACP,KAAK,eACL,KAAM,QAAQ,KAChB,CACA,EAEF,CAEF,GD1HC,IAAM,EAAsE,EAAM,KAAK,EAAM,WAAgD,CAAC,EAAO,IACnJ,gBAAo6E,EAAp6E,IAAqB,EAAO,IAAK,EAAK,UAAW,2BAA4B,OAAO,qDAAoD,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,utEAAutE,KAAK,eAAc,CAAI,CAC56E,CAAC,EAEa",
  "debugId": "D3B8E2A2130E3DD864756E2164756E21",
  "names": []
}