{
  "version": 3,
  "sources": ["src/IconCheckCircleDashed/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 IconCheckCircleDashed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} maskId=\"square-filled-radius-0-stroke-1.5-IconCheckCircleDashed\"><Path d=\"M14.4141 21.7354L13.6748 21.8604C13.1298 21.9523 12.5702 22 12 22C11.4298 22 10.8702 21.9523 10.3252 21.8604L9.58594 21.7354L9.83496 20.2559L10.5742 20.3809C11.0372 20.459 11.5137 20.5 12 20.5C12.4863 20.5 12.9628 20.459 13.4258 20.3809L14.165 20.2559L14.4141 21.7354Z\" fill=\"currentColor\"/><Path d=\"M5.06641 16.9189C5.62014 17.6979 6.30205 18.3799 7.08105 18.9336L7.69238 19.3682L6.82324 20.5908L6.21289 20.1562C5.297 19.5052 4.49478 18.703 3.84375 17.7871L3.40918 17.1768L4.63184 16.3076L5.06641 16.9189Z\" fill=\"currentColor\"/><Path d=\"M20.5908 17.1768L20.1562 17.7871C19.5052 18.703 18.703 19.5052 17.7871 20.1562L17.1768 20.5908L16.3076 19.3682L16.9189 18.9336C17.6979 18.3799 18.3799 17.6979 18.9336 16.9189L19.3682 16.3076L20.5908 17.1768Z\" fill=\"currentColor\"/><Path d=\"M16.0557 9.39453L15.5801 9.97461L10.5557 16.1162L7.43945 13L8.5 11.9395L10.4443 13.8838L14.8945 8.44434L16.0557 9.39453Z\" fill=\"currentColor\"/><Path d=\"M3.74414 9.83496L3.61914 10.5742C3.54102 11.0372 3.5 11.5137 3.5 12C3.5 12.4863 3.54102 12.9628 3.61914 13.4258L3.74414 14.165L2.26465 14.4141L2.13965 13.6748C2.04769 13.1298 2 12.5702 2 12C2 11.4298 2.04769 10.8702 2.13965 10.3252L2.26465 9.58594L3.74414 9.83496Z\" fill=\"currentColor\"/><Path d=\"M21.8604 10.3252C21.9523 10.8702 22 11.4298 22 12C22 12.5702 21.9523 13.1298 21.8604 13.6748L21.7354 14.4141L20.2559 14.165L20.3809 13.4258C20.459 12.9628 20.5 12.4863 20.5 12C20.5 11.5137 20.459 11.0372 20.3809 10.5742L20.2559 9.83496L21.7354 9.58594L21.8604 10.3252Z\" fill=\"currentColor\"/><Path d=\"M7.69238 4.63184L7.08105 5.06641C6.30205 5.62015 5.62014 6.30205 5.06641 7.08105L4.63184 7.69238L3.40918 6.82324L3.84375 6.21289C4.49478 5.297 5.297 4.49478 6.21289 3.84375L6.82324 3.40918L7.69238 4.63184Z\" fill=\"currentColor\"/><Path d=\"M17.7871 3.84375C18.703 4.49478 19.5052 5.297 20.1562 6.21289L20.5908 6.82324L19.3682 7.69238L18.9336 7.08105C18.3799 6.30205 17.6979 5.62014 16.9189 5.06641L16.3076 4.63184L17.1768 3.40918L17.7871 3.84375Z\" fill=\"currentColor\"/><Path d=\"M12 2C12.5702 2 13.1298 2.04769 13.6748 2.13965L14.4141 2.26465L14.165 3.74414L13.4258 3.61914C12.9628 3.54102 12.4863 3.5 12 3.5C11.5137 3.5 11.0372 3.54102 10.5742 3.61914L9.83496 3.74414L9.58594 2.26465L10.3252 2.13965C10.8702 2.04769 11.4298 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconCheckCircleDashed;\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,EAA0E,EAAM,KAAK,CAAC,IAC1F,gBAA40E,EAA50E,IAAqB,EAAO,OAAO,2DAA0D,gBAAC,EAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,kNAAkN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2HAA2H,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,2QAA2Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gNAAgN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,iNAAiN,KAAK,eAAc,EAAE,gBAAC,EAAD,CAAM,EAAE,gQAAgQ,KAAK,eAAc,CAAI,CACp1E,EAEc",
  "debugId": "86D815EC6442F44B64756E2164756E21",
  "names": []
}