{
  "version": 3,
  "sources": ["src/IconRobotHeadSlop/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 IconRobotHeadSlop: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1.5-IconRobotHeadSlop\"><Path d=\"M13.5 12.5C13.7142 13.4786 14.101 18.5671 15.1963 18.7686C16.8809 19.0784 18 19.6262 18 20.25C18 21.2165 15.3136 22 12 22C8.68637 22 5.99999 21.2165 5.99999 20.25C5.99999 19.6262 7.11924 19.0785 8.8037 18.7686C9.89877 18.5661 10.2856 13.4786 10.5 12.5H13.5Z\" fill=\"currentColor\"/><Path d=\"M2.1455 18.4463C2.44379 18.0197 3.10385 17.8737 3.6201 18.1201C4.13669 18.3669 5.24797 19.3584 4.95018 19.7852C4.65202 20.2119 3.05667 19.9124 2.54003 19.666C2.0236 19.4196 1.84734 18.8732 2.1455 18.4463Z\" fill=\"currentColor\"/><Path d=\"M20.3808 18.1201C20.8972 17.8739 21.5574 18.0195 21.8555 18.4463C22.1535 18.8731 21.9762 19.4195 21.4599 19.666C20.9432 19.9124 19.3481 20.2118 19.0498 19.7852C18.752 19.3582 19.8645 18.3665 20.3808 18.1201Z\" fill=\"currentColor\"/><Path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M12.75 3H20.5V6H21.5V10H20.5V12.25C20.5 14.8733 18.3732 16.9999 15.75 17H15.2812C15.2287 16.81 15.1759 16.5993 15.126 16.3701C14.8867 15.2714 14.7285 13.9817 14.6064 13.0938C14.6043 13.0785 14.6001 13.0634 14.5976 13.0479C14.8295 13.0997 15.0641 13.1573 15.3008 13.2227L15.6992 11.7773C13.1547 11.0748 10.8453 11.0748 8.30077 11.7773L8.69921 13.2227C8.93555 13.1574 9.1698 13.0996 9.40135 13.0479C9.39894 13.0633 9.39563 13.0786 9.39354 13.0938C9.27134 13.9817 9.11343 15.2714 8.87401 16.3701C8.82406 16.5993 8.77046 16.81 8.71776 17H8.24999C5.62672 16.9999 3.49999 14.8733 3.49999 12.25V10H2.49999V6H3.49999V3H11.25V2H12.75V3ZM9.24999 6.75C8.42165 6.7501 7.74999 7.42164 7.74999 8.25C7.74999 9.07836 8.42165 9.7499 9.24999 9.75C10.0783 9.74987 10.75 9.07835 10.75 8.25C10.75 7.42165 10.0783 6.75013 9.24999 6.75ZM14.75 6.75C13.9216 6.7501 13.25 7.42164 13.25 8.25C13.25 9.07836 13.9216 9.7499 14.75 9.75C15.5783 9.74987 16.25 9.07835 16.25 8.25C16.25 7.42165 15.5783 6.75013 14.75 6.75Z\" fill=\"currentColor\"/><Path d=\"M13.8105 14.0186C13.8105 14.0186 13.8068 14.0181 13.8047 14.0186C13.8136 14.0161 13.8223 14.0146 13.8223 14.0146C13.8197 14.0154 13.8147 14.0174 13.8105 14.0186Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconRobotHeadSlop;\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,EAAsE,EAAM,KAAK,CAAC,IACtF,gBAAyjE,EAAzjE,IAAqB,EAAO,OAAO,uDAAsD,gBAAC,EAAD,CAAM,EAAE,oQAAoQ,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+MAA+M,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,89BAA89B,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,oKAAoK,KAAK,eAAc,CAAI,CACjkE,EAEc",
  "debugId": "46A9572E8638DABE64756E2164756E21",
  "names": []
}