{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconFolderRestricted/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 IconFolderRestricted: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"folder-restricted\"><path d=\"M3.75 3C2.7835 3 2 3.7835 2 4.75V10.636C4.62332 8.87958 8.20588 9.15994 10.523 11.477C12.8401 13.7941 13.1204 17.3767 11.364 20H20.25C21.2165 20 22 19.2165 22 18.25V7.75C22 6.7835 21.2165 6 20.25 6H12.5352C12.4516 6 12.3735 5.95822 12.3272 5.88867L10.9209 3.77927C10.5963 3.29243 10.0499 3 9.46482 3H3.75Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M9.46231 12.5377C7.41206 10.4874 4.08794 10.4874 2.03769 12.5377C-0.0125632 14.5879 -0.0125632 17.9121 2.03769 19.9623C4.08794 22.0126 7.41206 22.0126 9.46231 19.9623C11.5126 17.9121 11.5126 14.5879 9.46231 12.5377ZM8.87894 18.3183L3.68172 13.1211C5.13775 12.1564 7.1188 12.3155 8.40165 13.5983C9.6845 14.8812 9.84359 16.8623 8.87894 18.3183ZM2.62106 14.1817L7.81828 19.3789C6.36225 20.3436 4.3812 20.1845 3.09835 18.9017C1.8155 17.6188 1.65641 15.6377 2.62106 14.1817Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconFolderRestricted;\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,EAAuD,CAAC,IAAU,CAC7E,OAAO,gBAAw6B,EAAx6B,IAAqB,EAAO,UAAU,qBAAoB,gBAAC,OAAD,CAAM,EAAE,oTAAoT,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,wdAAwd,KAAK,eAAc,CAAI,GAGl6B",
  "debugId": "C9FD2D347F7A30BA64756E2164756E21",
  "names": []
}