{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconCelebrate/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 IconCelebrate: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"celebrate, party, confetti\"><path d=\"M13.9235 1.01088C14.3317 0.940981 14.7194 1.21529 14.7893 1.62357L14.7897 1.62621L14.7904 1.63042C14.8018 1.70019 14.8114 1.77024 14.8201 1.84039C14.836 1.96902 14.8548 2.14964 14.8673 2.36357C14.892 2.78466 14.8943 3.36502 14.7874 3.94094C14.6649 4.60156 14.3552 5.20562 14.102 5.62029C13.972 5.83314 13.849 6.00885 13.7575 6.1325C13.7072 6.20063 13.6555 6.26787 13.6018 6.33337L13.5984 6.33743L13.5972 6.33891L13.5964 6.33977C13.3304 6.65722 12.8571 6.6991 12.5397 6.43302C12.2225 6.1672 12.1807 5.69484 12.4459 5.3774L12.4467 5.37644C12.4828 5.33218 12.5174 5.28665 12.5514 5.24072C12.6221 5.14515 12.7192 5.00645 12.8218 4.83853C13.0336 4.49164 13.2382 4.06867 13.3126 3.66741C13.3886 3.2574 13.3909 2.81073 13.3699 2.45127C13.3595 2.27493 13.3441 2.1269 13.3314 2.02445C13.3253 1.97509 13.3187 1.92578 13.3108 1.87667C13.241 1.46848 13.5153 1.08076 13.9235 1.01088Z\" fill=\"currentColor\"/><path d=\"M19.1901 2.58512C19.5798 2.72561 19.7818 3.15538 19.6413 3.54504L19.1784 4.82882C19.0379 5.21848 18.6082 5.42048 18.2185 5.27999C17.8288 5.1395 17.6268 4.70973 17.7673 4.32007L18.2302 3.03628C18.3707 2.64662 18.8005 2.44463 19.1901 2.58512Z\" fill=\"currentColor\"/><path d=\"M7.69676 5.13017C7.95165 5.06713 8.22095 5.14197 8.40675 5.3275L18.6925 15.5978C18.8785 15.7835 18.9537 16.0531 18.8907 16.3083C18.8277 16.5635 18.6356 16.7671 18.3846 16.8449L3.47204 21.4665C3.20607 21.5489 2.91633 21.4772 2.7195 21.2803C2.52268 21.0833 2.45118 20.7935 2.53379 20.5276L7.1606 5.6357C7.2385 5.38495 7.44187 5.19321 7.69676 5.13017Z\" fill=\"currentColor\"/><path d=\"M21.921 7.06376C22.1061 7.43436 21.9556 7.88477 21.585 8.06979L20.5565 8.5833C20.1859 8.76832 19.7354 8.61789 19.5504 8.24729C19.3654 7.8767 19.5158 7.42628 19.8864 7.24126L20.915 6.72775C21.2856 6.54273 21.736 6.69317 21.921 7.06376Z\" fill=\"currentColor\"/><path d=\"M17.1522 6.86884C17.4448 7.16195 17.4445 7.63683 17.1514 7.9295L16.1228 8.95653C15.8297 9.2492 15.3548 9.24884 15.0621 8.95573C14.7695 8.66261 14.7698 8.18774 15.0629 7.89507L16.0915 6.86804C16.3846 6.57537 16.8595 6.57573 17.1522 6.86884Z\" fill=\"currentColor\"/><path d=\"M17.415 10.9617C17.4324 10.5479 17.7821 10.2266 18.1959 10.244C18.3807 10.2523 18.5649 10.2725 18.7481 10.2969C19.0641 10.3392 19.4965 10.416 19.9354 10.5562C20.3458 10.6874 20.7792 10.9004 21.0904 11.0665C21.2768 11.166 21.4611 11.2699 21.6412 11.3805L21.6448 11.3827C21.9968 11.6011 22.1057 12.0638 21.8873 12.4158C21.669 12.7677 21.2068 12.876 20.8549 12.6578L20.8539 12.6573C20.7004 12.5629 20.543 12.4746 20.384 12.3898C20.0963 12.2362 19.7582 12.0743 19.4789 11.9851C19.1526 11.8808 18.8137 11.819 18.5495 11.7837C18.4119 11.7653 18.2736 11.7506 18.135 11.7428L18.1327 11.7427C17.7189 11.7251 17.3975 11.3755 17.415 10.9617Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconCelebrate;\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,EAAgD,CAAC,IAAU,CACtE,OAAO,gBAAswF,EAAtwF,IAAqB,EAAO,UAAU,8BAA6B,gBAAC,OAAD,CAAM,EAAE,y2BAAy2B,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,mPAAmP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,+VAA+V,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,6OAA6O,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,kPAAkP,KAAK,eAAc,EAAE,gBAAC,OAAD,CAAM,EAAE,ynBAAynB,KAAK,eAAc,CAAI,GAGhwF",
  "debugId": "1CFA43E8269B017364756E2164756E21",
  "names": []
}