{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHd/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 IconHd: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hd\"><path d=\"M21.25 4.75H2.75V19.25H21.25V4.75Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M5.4375 15.5V8.4541H6.91211V11.3154H10.0859V8.4541H11.5605V15.5H10.0859V12.5312H6.91211V15.5H5.4375Z\" fill=\"currentColor\"/><path d=\"M12.7324 15.5V8.4541H15.4229C17.5322 8.4541 18.7822 9.70898 18.7822 11.9404V11.9502C18.7822 14.1865 17.5371 15.5 15.4229 15.5H12.7324ZM14.207 14.2793H15.2471C16.5654 14.2793 17.2783 13.4785 17.2783 11.9551V11.9453C17.2783 10.4756 16.541 9.66992 15.2471 9.66992H14.207V14.2793Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconHd;\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,EAAyC,CAAC,IAAU,CAC/D,OAAO,gBAAklB,EAAllB,IAAqB,EAAO,UAAU,MAAK,gBAAC,OAAD,CAAM,EAAE,qCAAqC,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,uGAAuG,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,uRAAuR,KAAK,eAAc,CAAI,GAG5kB",
  "debugId": "0D5B97A097E99DC964756E2164756E21",
  "names": []
}