{
  "version": 3,
  "sources": ["src/IconCheckCircleDashed/index.tsx", "src/CentralIconBase/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconCheckCircleDashed: React.NamedExoticComponent<CentralIconBaseProps> = React.memo(React.forwardRef<SVGSVGElement, CentralIconBaseProps>((props, ref) => {\n  return <CentralIconBase {...props} ref={ref} ariaLabel={\"check-circle-dashed, done, confirm, save, success\"} maskId=\"square-filled-radius-0-stroke-1-IconCheckCircleDashed\"><path d=\"M14.4414 21.7129L13.9512 21.8096C13.3197 21.9345 12.6672 22 12 22C11.3328 22 10.6803 21.9345 10.0488 21.8096L9.55859 21.7129L9.75293 20.7314L10.2432 20.8291C10.8109 20.9414 11.3984 21 12 21C12.6016 21 13.1891 20.9414 13.7568 20.8291L14.2471 20.7314L14.4414 21.7129Z\" fill=\"currentColor\"/><path d=\"M4.51562 17C5.17284 17.9817 6.01832 18.8272 7 19.4844L7.41504 19.7627L6.85938 20.5938L6.44336 20.3154C5.3531 19.5855 4.41449 18.6469 3.68457 17.5566L3.40625 17.1406L4.2373 16.585L4.51562 17Z\" fill=\"currentColor\"/><path d=\"M20.5938 17.1406L20.3154 17.5566C19.5855 18.6469 18.6469 19.5855 17.5566 20.3154L17.1406 20.5938L16.585 19.7627L17 19.4844C17.9817 18.8272 18.8272 17.9817 19.4844 17L19.7627 16.585L20.5938 17.1406Z\" fill=\"currentColor\"/><path d=\"M15.7031 9.42969L10.5371 15.7441L7.79297 13L8.5 12.293L10.4629 14.2559L14.9297 8.79688L15.7031 9.42969Z\" fill=\"currentColor\"/><path d=\"M3.26855 9.75293L3.1709 10.2432C3.05859 10.8109 3 11.3984 3 12C3 12.6016 3.05859 13.1891 3.1709 13.7568L3.26855 14.2471L2.28711 14.4414L2.19043 13.9512C2.06551 13.3197 2 12.6672 2 12C2 11.3328 2.06551 10.6803 2.19043 10.0488L2.28711 9.55859L3.26855 9.75293Z\" fill=\"currentColor\"/><path d=\"M21.8096 10.0488C21.9345 10.6803 22 11.3328 22 12C22 12.6672 21.9345 13.3197 21.8096 13.9512L21.7129 14.4414L20.7314 14.2471L20.8291 13.7568C20.9414 13.1891 21 12.6016 21 12C21 11.3984 20.9414 10.8109 20.8291 10.2432L20.7314 9.75293L21.7129 9.55859L21.8096 10.0488Z\" fill=\"currentColor\"/><path d=\"M7.41504 4.2373L7 4.51562C6.01832 5.17284 5.17284 6.01832 4.51562 7L4.2373 7.41504L3.40625 6.85938L3.68457 6.44336C4.41449 5.3531 5.3531 4.41449 6.44336 3.68457L6.85938 3.40625L7.41504 4.2373Z\" fill=\"currentColor\"/><path d=\"M17.5566 3.68457C18.6469 4.41449 19.5855 5.3531 20.3154 6.44336L20.5938 6.85938L19.7627 7.41504L19.4844 7C18.8272 6.01832 17.9817 5.17284 17 4.51562L16.585 4.2373L17.1406 3.40625L17.5566 3.68457Z\" fill=\"currentColor\"/><path d=\"M12 2C12.6672 2 13.3197 2.06551 13.9512 2.19043L14.4414 2.28711L14.2471 3.26855L13.7568 3.1709C13.1891 3.05859 12.6016 3 12 3C11.3984 3 10.8109 3.05859 10.2432 3.1709L9.75293 3.26855L9.55859 2.28711L10.0488 2.19043C10.6803 2.06551 11.3328 2 12 2Z\" fill=\"currentColor\"/></CentralIconBase>;\n}));\n\nexport default IconCheckCircleDashed;\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,EAA0E,EAAM,KAAK,EAAM,WAAgD,CAAC,EAAO,IACvJ,gBAA6zE,EAA7zE,IAAqB,EAAO,IAAK,EAAK,UAAW,oDAAqD,OAAO,yDAAwD,gBAAC,OAAD,CAAM,EAAE,4QAA4Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iMAAiM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,wMAAwM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,0GAA0G,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oQAAoQ,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,4QAA4Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mMAAmM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sMAAsM,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,yPAAyP,KAAK,eAAc,CAAI,CACr0E,CAAC,EAEa",
  "debugId": "5BA3FD845EDB80E264756E2164756E21",
  "names": []
}