{
  "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.4409 2.59383C14.4985 2.18365 14.8778 1.89787 15.288 1.95551L20.2393 2.65138C20.6495 2.70903 20.9353 3.08828 20.8776 3.49846L20.4601 6.46926C20.4174 6.77296 20.1942 7.02007 19.8963 7.09323L17.7746 7.61443L17.2105 11.628L21.0039 14.9999H21.25C21.6642 14.9999 22 15.3357 22 15.7499V20.2499C22 20.6641 21.6642 20.9999 21.25 20.9999H2.75C2.33579 20.9999 2 20.6641 2 20.2499V15.7499C2 15.3357 2.33579 14.9999 2.75 14.9999H2.89098L4.70875 12.9802L3.54117 7.67032C3.49631 7.46628 3.53858 7.25278 3.65781 7.08122C3.77703 6.90967 3.96241 6.79563 4.16929 6.76655L4.91199 6.66217L4.91143 6.65818C4.70006 5.15418 5.74794 3.76359 7.25194 3.55222C8.75595 3.34085 10.1465 4.38873 10.3579 5.89273L10.3585 5.89672L11.1012 5.79234C11.3081 5.76326 11.5177 5.8218 11.6796 5.95384C11.8415 6.08588 11.941 6.27946 11.9541 6.48797L12.3109 12.1625L15.7274 11.4033L16.2892 7.40567L14.3933 6.31983C14.1272 6.16741 13.9807 5.86833 14.0234 5.56464L14.4409 2.59383ZM17.215 6.2073L19.0454 5.75767L19.2879 4.0324L15.8219 3.54529L15.5794 5.27056L17.215 6.2073ZM16.2883 12.8152L12.1627 13.7321C12.0059 13.7669 11.8421 13.7505 11.6954 13.6853L7.69311 11.9065L4.90902 14.9999H18.7461L16.2883 12.8152ZM6.3974 6.45341L8.87307 6.10548L8.87251 6.10149C8.77643 5.41785 8.14434 4.94154 7.4607 5.03762C6.77707 5.1337 6.30076 5.76579 6.39684 6.44942L6.3974 6.45341Z\" 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,gBAAg7C,EAAh7C,IAAqB,EAAO,UAAU,uBAAsB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,+yCAA+yC,KAAK,eAAc,CAAI,GAG16C",
  "debugId": "EDB96B788088453064756E2164756E21",
  "names": []
}