{
  "version": 3,
  "sources": ["src/IconOpenQuote1/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 IconOpenQuote1: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"round-filled-radius-2-stroke-1-IconOpenQuote1\"><Path d=\"M17.5108 19.0001C19.9659 19.0001 22 17.1022 22 14.7084C22 12.3146 19.9659 10.4167 17.5108 10.4167C16.2253 10.4167 15.0553 10.937 14.2322 11.7763C14.4654 10.7875 14.8641 9.98293 15.383 9.28554C16.3535 7.9814 17.7726 7.00944 19.4881 5.92241C19.7213 5.77461 19.7906 5.4657 19.6428 5.23244C19.495 4.99918 19.1861 4.92991 18.9528 5.07772C17.249 6.15736 15.6761 7.21665 14.5808 8.68854C13.4688 10.1828 12.8765 12.06 13.0216 14.7226C13.0296 17.1097 15.0605 19.0001 17.5108 19.0001Z\" fill=\"currentColor\"/><Path d=\"M6.51079 19.0001C8.96587 19.0001 11 17.1022 11 14.7084C11 12.3146 8.96587 10.4167 6.51079 10.4167C5.22534 10.4167 4.05531 10.937 3.23222 11.7763C3.46535 10.7875 3.86408 9.98293 4.38305 9.28554C5.35355 7.9814 6.77259 7.00944 8.48806 5.92241C8.72132 5.77461 8.79059 5.4657 8.64279 5.23244C8.49498 4.99918 8.18607 4.92991 7.95282 5.07772C6.24899 6.15736 4.67614 7.21665 3.58081 8.68854C2.46881 10.1828 1.87653 12.06 2.02162 14.7226C2.02962 17.1097 4.06055 19.0001 6.51079 19.0001Z\" fill=\"currentColor\"/><Path d=\"M7.95345 5.0788C8.18668 4.93101 8.49508 4.9999 8.6429 5.23309C8.79058 5.46622 8.72156 5.77467 8.48861 5.92255C6.77333 7.00945 5.35357 7.98181 4.38314 9.28583C3.86453 9.98283 3.46784 10.788 3.2347 11.7761C4.05763 10.9377 5.22655 10.4178 6.51107 10.4177C8.96604 10.4177 11.0001 12.315 11.0003 14.7087C11.0002 17.1024 8.96604 19.0007 6.51107 19.0007C4.06585 19.0005 2.03874 17.1174 2.02279 14.737L2.00326 14.2448C1.95069 11.8333 2.53734 10.0923 3.58138 8.68915C4.67662 7.21742 6.24981 6.15833 7.95345 5.0788Z\" fill=\"currentColor\"/><Path d=\"M18.9535 5.0788C19.1867 4.93101 19.4951 4.9999 19.6429 5.23309C19.7906 5.46622 19.7216 5.77467 19.4886 5.92255C17.7733 7.00945 16.3536 7.98181 15.3831 9.28583C14.8645 9.98283 14.4678 10.788 14.2347 11.7761C15.0576 10.9377 16.2266 10.4178 17.5111 10.4177C19.966 10.4177 22.0001 12.315 22.0003 14.7087C22.0002 17.1024 19.966 19.0007 17.5111 19.0007C15.0659 19.0005 13.0387 17.1174 13.0228 14.737L13.0033 14.2448C12.9507 11.8333 13.5373 10.0923 14.5814 8.68915C15.6766 7.21742 17.2498 6.15833 18.9535 5.0788Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconOpenQuote1;\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,EAAmE,EAAM,KAAK,CAAC,IACnF,gBAA8nE,EAA9nE,IAAqB,EAAO,OAAO,iDAAgD,gBAAC,EAAD,CAAM,EAAE,6dAA6d,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,geAAge,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4fAA4f,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,4fAA4f,KAAK,eAAc,CAAI,CACtoE,EAEc",
  "debugId": "58F1328EF284786C64756E2164756E21",
  "names": []
}