{
  "version": 3,
  "sources": ["src/IconWebhooks/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 IconWebhooks: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1.5-IconWebhooks\"><Path d=\"M6.18652 12.8525C4.78485 13.2135 3.75 14.4868 3.75 16C3.75 17.7949 5.20507 19.25 7 19.25C8.79493 19.25 10.25 17.7949 10.25 16V15.25H15.4209C15.702 14.6593 16.3023 14.25 17 14.25C17.9665 14.25 18.75 15.0335 18.75 16C18.75 16.9665 17.9665 17.75 17 17.75C16.3023 17.75 15.702 17.3407 15.4209 16.75H11.6904C11.3308 19.0169 9.36811 20.75 7 20.75C4.37665 20.75 2.25 18.6234 2.25 16C2.25 13.7857 3.76492 11.9267 5.81348 11.3994L6.18652 12.8525Z\" fill=\"currentColor\"/><Path d=\"M12 5.25C12.9665 5.25 13.75 6.0335 13.75 7C13.75 7.37967 13.6273 7.72981 13.4219 8.0166L15.3779 11.5361C15.8848 11.3519 16.4309 11.25 17 11.25C19.6234 11.25 21.75 13.3766 21.75 16C21.75 18.6234 19.6234 20.75 17 20.75C15.7293 20.75 14.5735 20.25 13.7217 19.4375L14.7568 18.3525C15.3407 18.9095 16.1299 19.25 17 19.25C18.7949 19.25 20.25 17.7949 20.25 16C20.25 14.2051 18.7949 12.75 17 12.75C16.4258 12.75 15.8884 12.8984 15.4219 13.1582L14.7656 13.5234L12.1113 8.74414C12.0745 8.74646 12.0374 8.75 12 8.75C11.0335 8.75 10.25 7.9665 10.25 7C10.25 6.0335 11.0335 5.25 12 5.25Z\" fill=\"currentColor\"/><Path d=\"M12 2.25C14.6234 2.25 16.75 4.37665 16.75 7C16.75 7.40867 16.6984 7.80642 16.6006 8.18652L15.1475 7.81348C15.2141 7.55447 15.25 7.28177 15.25 7C15.25 5.20507 13.7949 3.75 12 3.75C10.2051 3.75 8.75 5.20507 8.75 7C8.75 8.22097 9.42304 9.28566 10.4219 9.8418L11.0762 10.2061L8.42188 14.9824C8.62757 15.2693 8.75 15.62 8.75 16C8.75 16.9665 7.9665 17.75 7 17.75C6.0335 17.75 5.25 16.9665 5.25 16C5.25 15.0335 6.0335 14.25 7 14.25C7.03742 14.25 7.07449 14.2526 7.11133 14.2549L9.06738 10.7334C7.96266 9.86442 7.25 8.51665 7.25 7C7.25 4.37665 9.37665 2.25 12 2.25Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconWebhooks;\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,EAAiE,EAAM,KAAK,CAAC,IACjF,gBAAqtD,EAArtD,IAAqB,EAAO,OAAO,kDAAiD,gBAAC,EAAD,CAAM,EAAE,wbAAwb,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gkBAAgkB,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gjBAAgjB,KAAK,eAAc,CAAI,CAC7tD,EAEc",
  "debugId": "05F5198B52BFBD1564756E2164756E21",
  "names": []
}