{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFolderOpen/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 IconFolderOpen: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"folder-open\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M4.77798 20H18.7518C18.8003 20 18.8484 19.998 18.8961 19.9941C19.6117 19.9352 20.2253 19.442 20.4307 18.7438L22.531 11.6027C22.5604 11.5026 22.5768 11.4025 22.5813 11.304C22.6127 10.6141 22.062 10 21.3318 10H21V7.75C21 6.7835 20.2165 6 19.25 6H12.4014L10.9209 3.77927C10.5963 3.29243 10.0499 3 9.46482 3H3.75C2.7835 3 2 3.7835 2 4.75V18.25C2 19.2165 2.7835 20.0002 3.75 20.0002H4.75176C4.76051 20.0002 4.76925 20.0001 4.77798 20ZM3.75 4.5C3.61193 4.5 3.5 4.61193 3.5 4.75V18.25C3.5 18.3881 3.61193 18.5 3.75 18.5H4.76169C4.8667 18.4959 4.9582 18.4263 4.99006 18.3258L7.06935 11.2562C7.07067 11.2517 7.07201 11.2472 7.07336 11.2428L7.20695 10.7886C7.29428 10.4916 7.54913 10.2896 7.83819 10.2552C8.10586 10.0922 8.41869 10 8.74824 10H19.5V7.75C19.5 7.61193 19.3881 7.5 19.25 7.5H12C11.7492 7.5 11.5151 7.37467 11.376 7.16603L9.67283 4.61133C9.62646 4.54178 9.5484 4.5 9.46482 4.5H3.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderOpen;\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,EAAiD,CAAC,IAAU,CACvE,OAAO,gBAAg/B,EAAh/B,IAAqB,EAAO,UAAU,eAAc,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,u3BAAu3B,KAAK,eAAc,CAAI,GAG1+B",
  "debugId": "7A1DAE0E2BA551A864756E2164756E21",
  "names": []
}