{
  "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 fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M20.0189 3.98115C19.3192 3.28148 18.1643 3.35468 17.5586 4.13709L13.8806 8.88782C14.1154 9.05361 14.3392 9.24143 14.5489 9.45113C14.7586 9.66084 14.9464 9.88459 15.1122 10.1194L19.8629 6.44146C20.6453 5.83572 20.7185 4.68082 20.0189 3.98115ZM15.7955 11.4874L20.7812 7.62754C22.2781 6.46865 22.4181 4.2591 21.0795 2.92049C19.7409 1.58189 17.5314 1.72193 16.3725 3.21883L12.5126 8.20453C10.7514 7.63699 8.74141 8.05146 7.34174 9.45113L5.51258 11.2803H3.77441C3.5755 11.2803 3.38474 11.3593 3.24408 11.5L2.21967 12.5244C1.92678 12.8173 1.92678 13.2921 2.21967 13.585L3.97614 15.3415C2.70118 16.6359 2.7072 18.7188 3.99419 20.0058C5.28119 21.2928 7.36408 21.2988 8.65851 20.0239L10.415 21.7803C10.7079 22.0732 11.1827 22.0732 11.4756 21.7803L12.5001 20.7559C12.6407 20.6153 12.7197 20.4245 12.7197 20.2256V18.4874L14.5489 16.6583C15.9486 15.2586 16.363 13.2486 15.7955 11.4874ZM7.59779 18.9632L5.03686 16.4022C4.34765 17.1108 4.35365 18.244 5.05485 18.9452C5.75606 19.6464 6.8892 19.6524 7.59779 18.9632Z\" fill=\"currentColor\"/></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,gBAAkmC,EAAlmC,IAAqB,EAAO,UAAU,aAAY,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,2+BAA2+B,KAAK,eAAc,CAAI,GAG5lC",
  "debugId": "F19D78B32CBE476264756E2164756E21",
  "names": []
}