{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconPopcorn/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 IconPopcorn: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"popcorn, movies, series\"><path d=\"M19.75 7.75L18.25 21.25H5.75L4.25 7.75H19.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M9.27344 8.16309L9.97794 20.8442M14.7276 8.16309L14.023 20.8442\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M4.75 7.75V7.49575C4.75 6.76361 5.26607 6.12543 6.00171 5.94786C6.5165 5.8236 6.93816 5.46823 7.13523 4.99254L7.34398 4.48868C7.97506 2.96537 9.50133 4.05938 10.5313 3.31353L10.7571 3.15C11.4937 2.61667 12.5063 2.61667 13.2429 3.15L13.4687 3.31353C14.4987 4.05938 16.0249 2.96537 16.656 4.48868L16.8648 4.99254C17.0618 5.46823 17.4835 5.8236 17.9983 5.94786C18.7339 6.12543 19.25 6.76361 19.25 7.49575V7.75\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconPopcorn;\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,gBAAqyB,EAAryB,IAAqB,EAAO,UAAU,2BAA0B,gBAAC,OAAD,CAAM,EAAE,gDAAgD,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,kEAAkE,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,yZAAyZ,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAG/xB",
  "debugId": "CCF14ED87C5DD05664756E2164756E21",
  "names": []
}