{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconSidebar/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 IconSidebar: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"sidebar, menu, list, window\"><path d=\"M6 8.5C6 9.05228 6.44772 9.5 7 9.5C7.55229 9.5 8 9.05228 8 8.5C8 7.94772 7.55229 7.5 7 7.5C6.44772 7.5 6 7.94772 6 8.5Z\" fill=\"currentColor\"/><path d=\"M6 12C6 12.5523 6.44771 13 7 13C7.55228 13 8 12.5523 8 12C8 11.4477 7.55229 11 7 11C6.44772 11 6 11.4477 6 12Z\" fill=\"currentColor\"/><path d=\"M6 15.5C6 16.0523 6.44771 16.5 7 16.5C7.55228 16.5 8 16.0523 8 15.5C8 14.9477 7.55228 14.5 7 14.5C6.44771 14.5 6 14.9477 6 15.5Z\" fill=\"currentColor\"/><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M2 5.75C2 4.7835 2.7835 4 3.75 4H20.25C21.2165 4 22 4.7835 22 5.75V18.25C22 19.2165 21.2165 20 20.25 20H3.75C2.7835 20 2 19.2165 2 18.25V5.75ZM3.75 5.5C3.61193 5.5 3.5 5.61193 3.5 5.75V18.25C3.5 18.3881 3.61193 18.5 3.75 18.5H10.5V5.5H3.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconSidebar;\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,gBAAi0B,EAAj0B,IAAqB,EAAO,UAAU,+BAA8B,gBAAC,OAAD,CAAM,EAAE,0HAA0H,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,iHAAiH,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mIAAmI,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,mPAAmP,KAAK,eAAc,CAAI,GAG3zB",
  "debugId": "AF0D055E4559EA7A64756E2164756E21",
  "names": []
}