{
  "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.91529 14.2873C6.57321 16.037 7.96352 17.4272 9.71314 18.0852C9.49558 19.2603 9.14374 20.43 8.61841 21.3703C8.12197 22.259 6.95636 22.2063 6.23658 21.4866L2.51392 17.7639C1.79443 17.0441 1.74151 15.8782 2.63013 15.3821C3.57063 14.8571 4.74086 14.505 5.91529 14.2873Z\" fill=\"currentColor\"/><path d=\"M12.0002 7.00022C14.7617 7.00022 17.0002 9.2388 17.0002 12.0002C17.0002 14.7616 14.7617 17.0002 12.0002 17.0002C9.23896 17.0001 7.00026 14.7615 7.00025 12.0002C7.00025 9.23889 9.23895 7.00037 12.0002 7.00022Z\" fill=\"currentColor\"/><path d=\"M15.3831 2.63011C15.8792 1.74154 17.0442 1.79442 17.7639 2.5139L21.4866 6.23655C22.2063 6.95634 22.2592 8.12224 21.3704 8.61839C20.4296 9.14348 19.2589 9.4945 18.0842 9.71214C17.426 7.96294 16.0368 6.57304 14.2874 5.91526C14.505 4.74072 14.858 3.5707 15.3831 2.63011Z\" 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,gBAA83B,EAA93B,IAAqB,EAAO,UAAU,gBAAe,gBAAC,OAAD,CAAM,EAAE,+QAA+Q,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mNAAmN,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,8QAA8Q,KAAK,eAAc,CAAI,GAGx3B",
  "debugId": "926F5F460D50AAF764756E2164756E21",
  "names": []
}