{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCandy/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 IconCandy: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"candy, sweet\"><path d=\"M5.93165 14.334C6.59074 16.0463 7.95367 17.4074 9.66602 18.0664C9.36553 19.4377 8.84838 20.7647 8.0586 21.7119C7.73267 22.1028 7.15189 22.0669 6.792 21.707L2.292 17.207C1.93222 16.8471 1.89613 16.2662 2.28712 15.9404C3.23406 15.1515 4.56148 14.6347 5.93165 14.334ZM11.999 7.00001C14.7604 7.00001 16.999 9.2386 16.999 12C16.999 14.7614 14.7605 17 11.999 17C9.23762 17 6.99903 14.7614 6.99903 12C6.99904 9.2386 9.23763 7.00002 11.999 7.00001ZM15.9395 2.28809C16.2652 1.89711 16.8462 1.9332 17.2061 2.29298L21.7061 6.79298C22.0659 7.15287 22.102 7.7338 21.7109 8.05958C20.7638 8.84868 19.4359 9.3644 18.0654 9.66505C17.4062 7.95349 16.0447 6.5915 14.333 5.93262C14.6337 4.56246 15.1505 3.23504 15.9395 2.28809Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCandy;\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,EAA4C,CAAC,IAAU,CAClE,OAAO,gBAA0xB,EAA1xB,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,ssBAAssB,KAAK,eAAc,CAAI,GAGpxB",
  "debugId": "C064FB5BA559C0C764756E2164756E21",
  "names": []
}