{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconOculus/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 IconOculus: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"oculus\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M1.96384 8.53134C2.87338 6.46698 4.91303 5 7.32528 5H16.6747C19.087 5 21.1266 6.46698 22.0362 8.53134L22.2151 8.34927C22.5055 8.05386 22.9803 8.04975 23.2757 8.34011C23.5711 8.63046 23.5752 9.10531 23.2849 9.40073L22.5013 10.198C22.7737 12.0599 22.4698 14.134 21.578 15.8036C20.6103 17.6152 18.9117 19 16.5041 19H7.49592C5.08834 19 3.38975 17.6152 2.42205 15.8036C1.53023 14.134 1.22634 12.0599 1.49875 10.198L0.715105 9.40073C0.424755 9.10531 0.42886 8.63046 0.724275 8.34011C1.01969 8.04975 1.49454 8.05386 1.7849 8.34927L1.96384 8.53134ZM10.75 8C10.3358 8 10 8.33579 10 8.75C10 9.16421 10.3358 9.5 10.75 9.5H13.25C13.6642 9.5 14 9.16421 14 8.75C14 8.33579 13.6642 8 13.25 8H10.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconOculus;\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,gBAAkyB,EAAlyB,IAAqB,EAAO,UAAU,UAAS,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,8qBAA8qB,KAAK,eAAc,CAAI,GAG5xB",
  "debugId": "9CE40062C839387464756E2164756E21",
  "names": []
}