{
  "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.3017 3.58369C14.4362 2.6266 15.3211 1.95976 16.2782 2.09428L19.249 2.51179C20.2061 2.6463 20.873 3.53122 20.7385 4.48832L20.5543 5.79841C20.4548 6.50703 19.9338 7.08362 19.2388 7.25433L17.7746 7.61402L17.2105 11.6276L21.0039 14.9995H21.25C21.6642 14.9995 22 15.3353 22 15.7495V19.2495C22 20.216 21.2165 20.9995 20.25 20.9995H3.75C2.7835 20.9995 2 20.216 2 19.2495V15.7495C2 15.3353 2.33579 14.9995 2.75 14.9995H2.89098L4.70875 12.9797L3.7731 8.72464C3.57842 7.83929 4.09062 6.9732 4.9163 6.69243L4.91143 6.65777C4.70006 5.15377 5.74794 3.76318 7.25194 3.55181C8.75595 3.34044 10.1465 4.38832 10.3579 5.89232L10.3628 5.92698C11.2339 5.96929 11.965 6.66064 12.0219 7.56536L12.3109 12.1621L15.7274 11.4029L16.2892 7.40526L14.9808 6.6559C14.3599 6.30026 14.018 5.6024 14.1176 4.89378L14.3017 3.58369ZM17.215 6.20689L18.881 5.79764C18.9803 5.77325 19.0547 5.69088 19.0689 5.58965L19.2531 4.27956C19.2723 4.14283 19.177 4.01641 19.0403 3.9972L16.0695 3.57968C15.9328 3.56046 15.8063 3.65572 15.7871 3.79245L15.603 5.10254C15.5888 5.20377 15.6376 5.30347 15.7263 5.35427L17.215 6.20689ZM8.87307 6.10507L8.87251 6.10108C8.77643 5.41744 8.14434 4.94113 7.4607 5.03721C6.77707 5.13329 6.30076 5.76537 6.39684 6.44901L6.3974 6.453L8.87307 6.10507ZM18.7461 14.9995H4.90902L7.57166 12.041C7.64409 11.9605 7.76008 11.9358 7.85902 11.9798L11.3941 13.551C11.7365 13.7031 12.1187 13.7414 12.4845 13.6601L16.2883 12.8148L18.7461 14.9995Z\" 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,gBAAmhD,EAAnhD,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,k5CAAk5C,KAAK,eAAc,CAAI,GAG7gD",
  "debugId": "2F183DC17792BFF164756E2164756E21",
  "names": []
}