{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCap/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 IconCap: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"cap, fan\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M10.336 4.62071C6.45334 5.29133 3.5 8.67577 3.5 12.75V13.806C4.97965 13.1956 6.42642 12.7399 7.85699 12.439C7.96151 9.37908 9.21524 6.44152 10.336 4.62071ZM12 4.8185C10.9599 6.28992 9.55991 9.17852 9.37131 12.1775C11.129 11.9408 12.871 11.9408 14.6287 12.1775C14.4401 9.17852 13.0401 6.28992 12 4.8185ZM16.143 12.439C17.5736 12.7399 19.0204 13.1956 20.5 13.806V12.75C20.5 8.67577 17.5467 5.29133 13.664 4.62071C14.7848 6.44152 16.0385 9.37908 16.143 12.439ZM2 12.75C2 7.36522 6.36522 3 11.75 3H12.25C17.6348 3 22 7.36522 22 12.75V18.1792C22 19.4764 20.6696 20.2758 19.5307 19.8236C14.4571 17.8092 9.5429 17.8092 4.46933 19.8236C3.33038 20.2758 2 19.4764 2 18.1792V12.75Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCap;\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,EAA0C,CAAC,IAAU,CAChE,OAAO,gBAAuxB,EAAvxB,IAAqB,EAAO,UAAU,YAAW,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,iqBAAiqB,KAAK,eAAc,CAAI,GAGjxB",
  "debugId": "1C00E7FBDC07DDFA64756E2164756E21",
  "names": []
}