{
  "version": 3,
  "sources": ["src/IconBugFace/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconBugFace: React.NamedExoticComponent<CentralIconBaseProps> = React.memo(React.forwardRef<SVGSVGElement, CentralIconBaseProps>((props, ref) => {\n  return <CentralIconBase {...props} ref={ref} ariaLabel={\"bug-face, issue\"} maskId=\"square-filled-radius-0-stroke-1-IconBugFace\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3.60166 3.22728C4.03124 2.63498 4.77108 2 5.92468 2C7.71417 2 8.849 3.41563 9.57172 4.90696C9.62981 5.02682 9.68589 5.14847 9.74006 5.27146C10.464 5.09421 11.2224 5 12.0029 5C12.7826 5 13.5402 5.094 14.2634 5.27088C14.3175 5.14808 14.3735 5.02663 14.4315 4.90696C15.1542 3.41563 16.289 2 18.0785 2C19.2321 2 19.972 2.63498 20.4015 3.22728C20.6152 3.52185 20.759 3.81339 20.8494 4.02999C20.8949 4.139 20.9277 4.23094 20.9496 4.29739C20.9606 4.33068 20.9689 4.35772 20.9747 4.37749L20.9817 4.40161L20.9838 4.40938L20.9845 4.41215L20.9851 4.41416L21.1126 4.89763L20.1456 5.15265L20.0185 4.67045L20.0181 4.66918L20.0155 4.66C20.0125 4.64986 20.0074 4.63304 19.9999 4.61049C19.985 4.56529 19.961 4.49773 19.9266 4.41533C19.8572 4.24912 19.7486 4.03023 19.592 3.81439C19.2812 3.38586 18.8095 3 18.0785 3C16.9065 3 16.0221 3.91772 15.3314 5.34306C15.2962 5.41556 15.2619 5.48885 15.2282 5.56282C18.5947 6.78392 21.0043 9.86141 21.0043 13.5C21.0043 18.2226 16.9452 22 12.0029 22C7.0607 22 3.0016 18.2226 3.0016 13.5C3.0016 9.86224 5.41003 6.78532 8.77533 5.56365C8.74158 5.4894 8.70709 5.41583 8.67182 5.34306C7.98108 3.91772 7.09668 3 5.92468 3C5.19366 3 4.72197 3.38586 4.41116 3.81439C4.25462 4.03023 4.14598 4.24912 4.07657 4.41533C4.04216 4.49773 4.01818 4.56529 4.00328 4.61049C3.99585 4.63304 3.99073 4.64986 3.98774 4.66L3.98462 4.67087L3.85756 5.15265L2.89062 4.89763L3.01837 4.41325L3.01867 4.41215L3.01941 4.40938L3.02155 4.40161L3.02848 4.37749C3.0343 4.35772 3.04259 4.33067 3.05356 4.29739C3.07547 4.23094 3.10828 4.139 3.15379 4.02999C3.24425 3.81339 3.38801 3.52185 3.60166 3.22728ZM10.5 13.75C10.5 14.7165 9.82843 15.5 9 15.5C8.17157 15.5 7.5 14.7165 7.5 13.75C7.5 12.7835 8.17157 12 9 12C9.82843 12 10.5 12.7835 10.5 13.75ZM13.5 17C13.5 17.5523 12.8284 18 12 18C11.1716 18 10.5 17.5523 10.5 17C10.5 16.4477 11.1716 16 12 16C12.8284 16 13.5 16.4477 13.5 17ZM15 15.5C15.8284 15.5 16.5 14.7165 16.5 13.75C16.5 12.7835 15.8284 12 15 12C14.1716 12 13.5 12.7835 13.5 13.75C13.5 14.7165 14.1716 15.5 15 15.5Z\" fill=\"currentColor\"/></CentralIconBase>;\n}));\n\nexport default IconBugFace;\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,EAAgE,EAAM,KAAK,EAAM,WAAgD,CAAC,EAAO,IAC7I,gBAA6pE,EAA7pE,IAAqB,EAAO,IAAK,EAAK,UAAW,kBAAmB,OAAO,+CAA8C,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+9DAA+9D,KAAK,eAAc,CAAI,CACrqE,CAAC,EAEa",
  "debugId": "A3D858526B42940964756E2164756E21",
  "names": []
}