{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconBurger/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 IconBurger: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"burger, hamburger, sandwich \"><path d=\"M20.25 20.25V21H21V20.25H20.25ZM3.75 20.25H3V21H3.75V20.25ZM3.75 15.75V15H3V15.75H3.75ZM20.25 15.75H21V15H20.25V15.75ZM20.25 20.25V19.5H3.75V20.25V21H20.25V20.25ZM3.75 20.25H4.5V15.75H3.75H3V20.25H3.75ZM3.75 15.75V16.5H20.25V15.75V15H3.75V15.75ZM20.25 15.75H19.5V20.25H20.25H21V15.75H20.25Z\" fill=\"currentColor\"/><path d=\"M2.75 12.25H21.25V15.75H2.75V12.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M20.25 11.0938C20.25 5.4079 15.5 3.75 12 3.75C8.5 3.75 3.75 5.4079 3.75 11.0938V12.25H20.25V11.0938Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconBurger;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAsqB,EAAtqB,IAAqB,EAAO,UAAU,gCAA+B,gBAAC,OAAD,CAAM,EAAE,qSAAqS,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,sCAAsC,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,uGAAuG,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAGhqB",
  "debugId": "C68D333CB62A271A64756E2164756E21",
  "names": []
}