{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconComponents/index.tsx"],
  "sourcesContent": [
    "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\nexport const CentralIconBase: React.FC<\n  CentralIconBaseProps & { ariaLabel?: string }\n> = ({\n  children,\n  size = 24,\n  ariaLabel,\n  color,\n  ariaHidden = true,\n  style,\n  mode = \"masked\",\n  maskId,\n  ...props\n}) => {\n  const masked = mode !== \"raw\" && !!maskId;\n  return (\n    <svg\n      {...props}\n      aria-hidden={ariaHidden}\n      role={ariaHidden ? 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      {ariaLabel && !ariaHidden && <title>{ariaLabel}</title>}\n      {masked ? (\n        <>\n          <mask\n            id={maskId}\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              {children}\n            </g>\n          </mask>\n          <rect\n            width=\"24\"\n            height=\"24\"\n            fill=\"currentColor\"\n            mask={`url(#${maskId})`}\n          />\n        </>\n      ) : (\n        children\n      )}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconComponents: React.NamedExoticComponent<CentralIconBaseProps> = React.memo((props) => {\n  return <CentralIconBase {...props} ariaLabel=\"components, figma\" maskId=\"round-filled-radius-0-stroke-1.5-IconComponents\"><path d=\"M12.5303 1.46967C12.2374 1.17678 11.7626 1.17678 11.4697 1.46967L7.71967 5.21967C7.42678 5.51256 7.42678 5.98744 7.71967 6.28033L11.4697 10.0303C11.7626 10.3232 12.2374 10.3232 12.5303 10.0303L16.2803 6.28033C16.5732 5.98744 16.5732 5.51256 16.2803 5.21967L12.5303 1.46967Z\" fill=\"currentColor\"/><path d=\"M6.28033 7.71967C5.98744 7.42678 5.51256 7.42678 5.21967 7.71967L1.46967 11.4697C1.17678 11.7626 1.17678 12.2374 1.46967 12.5303L5.21967 16.2803C5.51256 16.5732 5.98744 16.5732 6.28033 16.2803L10.0303 12.5303C10.3232 12.2374 10.3232 11.7626 10.0303 11.4697L6.28033 7.71967Z\" fill=\"currentColor\"/><path d=\"M18.7803 7.71967C18.4874 7.42678 18.0126 7.42678 17.7197 7.71967L13.9697 11.4697C13.6768 11.7626 13.6768 12.2374 13.9697 12.5303L17.7197 16.2803C18.0126 16.5732 18.4874 16.5732 18.7803 16.2803L22.5303 12.5303C22.8232 12.2374 22.8232 11.7626 22.5303 11.4697L18.7803 7.71967Z\" fill=\"currentColor\"/><path d=\"M11.4697 13.9697L7.71967 17.7197C7.42678 18.0126 7.42678 18.4874 7.71967 18.7803L11.4697 22.5303C11.7626 22.8232 12.2374 22.8232 12.5303 22.5303L16.2803 18.7803C16.5732 18.4874 16.5732 18.0126 16.2803 17.7197L12.5303 13.9697C12.2374 13.6768 11.7626 13.6768 11.4697 13.9697Z\" fill=\"currentColor\"/></CentralIconBase>;\n});\n\nexport default IconComponents;\n"
  ],
  "mappings": "AAAA,qBAUO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,QACA,OAAO,SACP,YACG,KACC,CACJ,IAAM,EAAS,IAAS,OAAS,CAAC,CAAC,EACnC,OACE,gBAqCE,MArCF,IACM,EACJ,cAAa,EACb,KAAM,EAAa,OAAY,MAC/B,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,GAAa,CAAC,GAAc,gBAAoB,QAApB,KAAQ,CAAY,EAChD,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,GC9DN,qBAGO,IAAM,EAAmE,EAAM,KAAK,CAAC,IAAU,CACpG,OAAO,gBAAyzC,EAAzzC,IAAqB,EAAO,UAAU,oBAAoB,OAAO,mDAAkD,gBAAC,OAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,oRAAoR,KAAK,eAAc,CAAI,EACj0C,EAEc",
  "debugId": "CDA96ED25BC08D8264756E2164756E21",
  "names": []
}