{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconLimit/index.tsx"],
  "sourcesContent": [
    "import React from \"react\";\nimport type { SVGProps } from \"react\";\n\nexport type CentralIconBaseProps = {\n  size?: string | number;\n  ariaHidden?: boolean;\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  ...props\n}) => {\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      {children}\n    </svg>\n  );\n};\n",
    "import React from \"react\";\nimport { CentralIconBase, type CentralIconBaseProps } from \"../CentralIconBase\";\n\nexport const IconLimit: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"limit\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M18.0104 6.98959C14.6909 3.67014 9.30904 3.67014 5.98959 6.98959C2.7585 10.2207 2.67247 15.4063 5.73154 18.741C6.01154 19.0462 5.99109 19.5207 5.68585 19.8007C5.38062 20.0807 4.90618 20.0602 4.62618 19.755C1.02645 15.8309 1.12735 9.73051 4.92893 5.92893C8.83417 2.02369 15.1658 2.02369 19.0711 5.92893C22.8726 9.73051 22.9735 15.8309 19.3738 19.755C19.0938 20.0602 18.6194 20.0807 18.3141 19.8007C18.0089 19.5207 17.9884 19.0462 18.2685 18.741C21.3275 15.4063 21.2415 10.2207 18.0104 6.98959Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M8.21967 9.21967C8.51256 8.92678 8.98744 8.92678 9.28033 9.21967L12.5303 12.4697C12.8232 12.7626 12.8232 13.2374 12.5303 13.5303C12.2374 13.8232 11.7626 13.8232 11.4697 13.5303L8.21967 10.2803C7.92678 9.98744 7.92678 9.51256 8.21967 9.21967Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconLimit;\n"
  ],
  "mappings": "AAAA,qBAQO,IAAM,EAET,EACF,WACA,OAAO,GACP,YACA,QACA,aAAa,GACb,WACG,KACC,CACJ,OACE,gBAaE,MAbF,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,CACD,GCjCN,qBAGO,IAAM,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAAy5B,EAAz5B,IAAqB,EAAO,UAAU,SAAQ,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+eAA+e,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,oPAAoP,KAAK,eAAc,CAAI,GAGn5B",
  "debugId": "CC01D5C0C9628FCE64756E2164756E21",
  "names": []
}