{
  "version": 3,
  "sources": ["src/IconWebhooks/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconWebhooks: React.NamedExoticComponent<CentralIconBaseProps> = React.memo(React.forwardRef<SVGSVGElement, CentralIconBaseProps>((props, ref) => {\n  return <CentralIconBase {...props} ref={ref} ariaLabel={\"webhooks\"} maskId=\"square-filled-radius-0-stroke-1-IconWebhooks\"><path d=\"M5.66699 12.1611L5.79785 12.6729C4.20459 13.0832 3.02734 14.5304 3.02734 16.251C3.02784 18.2909 4.68258 19.9453 6.72266 19.9453C8.76254 19.9451 10.4165 18.2908 10.417 16.251V15.7227H15.5078C15.7348 14.9595 16.4415 14.4033 17.2783 14.4033C18.2983 14.4036 19.125 15.23 19.125 16.25C19.125 17.27 18.2983 18.0974 17.2783 18.0977C16.4418 18.0977 15.7351 17.541 15.5078 16.7783H11.4424C11.1796 19.1529 9.16722 21.0008 6.72266 21.001C4.09961 21.001 1.97315 18.8739 1.97266 16.251C1.97266 14.037 3.48662 12.1777 5.53516 11.6504L5.66699 12.1611Z\" fill=\"currentColor\"/><path d=\"M12 4.90332C13.0202 4.90332 13.8476 5.72983 13.8477 6.75C13.8477 7.25264 13.646 7.70796 13.3203 8.04102L15.4463 11.8672C16.0103 11.6313 16.629 11.501 17.2773 11.501C19.9007 11.501 22.0273 13.6276 22.0273 16.251C22.0268 18.8739 19.9004 21.001 17.2773 21.001C16.007 21.0009 14.8519 20.5008 14 19.6885L14.7285 18.9248C15.3918 19.5572 16.2889 19.9452 17.2773 19.9453C19.3174 19.9453 20.9722 18.2909 20.9727 16.251C20.9727 14.2106 19.3177 12.5557 17.2773 12.5557C16.6253 12.5557 16.014 12.7251 15.4834 13.0205L15.0225 13.2773L12.3975 8.55273C12.2693 8.58085 12.1366 8.59766 12 8.59766C10.9798 8.59763 10.1533 7.77017 10.1533 6.75C10.1533 5.72985 10.9799 4.90335 12 4.90332Z\" fill=\"currentColor\"/><path d=\"M12 2C14.6234 2 16.75 4.12762 16.75 6.75098C16.7499 7.15977 16.6983 7.55781 16.6006 7.9375L16.0889 7.80566L15.5781 7.6748C15.6539 7.38037 15.6943 7.07043 15.6943 6.75098C15.6943 4.71059 14.0404 3.05566 12 3.05566C9.95961 3.05566 8.30566 4.71059 8.30566 6.75098C8.306 8.13901 9.07166 9.34988 10.2061 9.98145L10.667 10.2373L10.4102 10.6982L8.04199 14.96C8.36757 15.293 8.56932 15.7475 8.56934 16.25C8.56934 17.27 7.74265 18.0974 6.72266 18.0977C5.70246 18.0977 4.875 17.2702 4.875 16.25C4.87503 15.2298 5.70248 14.4033 6.72266 14.4033C6.85914 14.4034 6.99207 14.4182 7.12012 14.4463L9.24609 10.6182C8.03971 9.75765 7.2503 8.34737 7.25 6.75098C7.25 4.12762 9.37665 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n}));\n\nexport default IconWebhooks;\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,EAAiE,EAAM,KAAK,EAAM,WAAgD,CAAC,EAAO,IAC9I,gBAAsiE,EAAtiE,IAAqB,EAAO,IAAK,EAAK,UAAW,WAAY,OAAO,gDAA+C,gBAAC,OAAD,CAAM,EAAE,2hBAA2hB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+pBAA+pB,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,gqBAAgqB,KAAK,eAAc,CAAI,CAC9iE,CAAC,EAEa",
  "debugId": "FE4919647904021E64756E2164756E21",
  "names": []
}