{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconHandBell/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 IconHandBell: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"hand-bell\"><path d=\"M8.14637 19.4755C7.14623 20.4756 5.52467 20.4756 4.52452 19.4755C3.52438 18.4753 3.52438 16.8538 4.52452 15.8536\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M10.9453 21.25L2.75 13.0547L3.77441 12.0303H5.82324L7.87207 9.98147C9.19479 8.65875 11.158 8.36684 12.7634 9.10573C13.218 9.31498 13.644 9.60689 14.0186 9.98147C14.3931 10.3561 14.6851 10.782 14.8943 11.2366C15.6332 12.8421 15.3413 14.8052 14.0186 16.128L11.9697 18.1768V20.2256L10.9453 21.25Z\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/><path d=\"M15.1999 11L20.3221 7.03449C21.4617 6.15217 21.5683 4.46995 20.5492 3.45081C19.5301 2.43167 17.8478 2.53829 16.9655 3.67795L13 8.80007\" stroke=\"currentColor\" strokeWidth=\"1.5\" strokeLinecap=\"square\"/></CentralIconBase>;\n};\n\nexport default IconHandBell;\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,EAA+C,CAAC,IAAU,CACrE,OAAO,gBAAgzB,EAAhzB,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,EAAE,mHAAmH,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,wSAAwS,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,EAAE,gBAAC,OAAD,CAAM,EAAE,yIAAyI,OAAO,eAAe,YAAY,MAAM,cAAc,SAAQ,CAAI,GAG1yB",
  "debugId": "597302C856E6091464756E2164756E21",
  "names": []
}