{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSandbox/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 IconSandbox: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sandbox, playground\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M14.1919 4.36541C14.3871 2.97688 15.6709 2.00944 17.0594 2.20459L18.4678 2.40253C19.8564 2.59767 20.8238 3.8815 20.6287 5.27004C20.4842 6.29809 19.7284 7.13461 18.7202 7.38227L17.7746 7.61455L17.2105 11.6281L21.0039 15H21.25C21.6642 15 22 15.3358 22 15.75V17.25C22 19.3211 20.3211 21 18.25 21H5.75C3.67893 21 2 19.3211 2 17.25V15.75C2 15.3358 2.33579 15 2.75 15H2.89098L4.70875 12.9803L3.7731 8.72517C3.57842 7.83982 4.09062 6.97373 4.9163 6.69296L4.91143 6.6583C4.70006 5.15429 5.74794 3.76371 7.25194 3.55233C8.75595 3.34096 10.1465 4.38884 10.3579 5.89284L10.3628 5.9275C11.2339 5.96981 11.965 6.66117 12.0219 7.56588L12.3109 12.1626L15.7274 11.4034L16.2892 7.40579L15.4443 6.92187C14.5434 6.40591 14.0474 5.39347 14.1919 4.36541ZM17.215 6.20742L18.3623 5.92557C18.7749 5.82423 19.0841 5.48194 19.1433 5.06128C19.2231 4.49311 18.8273 3.96778 18.2591 3.88793L16.8507 3.68999C16.2825 3.61014 15.7572 4.006 15.6773 4.57417C15.6182 4.99484 15.8212 5.40912 16.1898 5.62024L17.215 6.20742ZM8.87307 6.10559L8.87251 6.1016C8.77643 5.41797 8.14434 4.94166 7.4607 5.03774C6.77707 5.13381 6.30076 5.7659 6.39684 6.44954L6.3974 6.45353L8.87307 6.10559ZM18.7461 15H4.90902L6.60004 13.1211C7.25188 12.3969 8.29584 12.1745 9.18626 12.5702L11.2964 13.508C11.7023 13.6884 12.1554 13.7338 12.589 13.6374L16.2883 12.8154L18.7461 15Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSandbox;\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,EAA8C,CAAC,IAAU,CACpE,OAAO,gBAAw6C,EAAx6C,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,uyCAAuyC,KAAK,eAAc,CAAI,GAGl6C",
  "debugId": "EDE8BA59F65A397C64756E2164756E21",
  "names": []
}