{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconStar/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 IconStar: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"star, favorite, award\"><path d=\"M12.6766 1.42636C12.552 1.16583 12.2888 1 12 1C11.7112 1 11.4481 1.16583 11.3234 1.42636L8.54631 7.23199L2.15224 8.07277C1.86544 8.11049 1.62589 8.30978 1.53663 8.58493C1.44736 8.86009 1.52429 9.16205 1.73434 9.36095L6.41068 13.7892L5.23679 20.1131C5.18405 20.3972 5.29924 20.6864 5.53291 20.8564C5.76657 21.0265 6.07715 21.0471 6.33127 20.9095L12 17.8404L17.6688 20.9095C17.9229 21.0471 18.2335 21.0265 18.4671 20.8564C18.7008 20.6864 18.816 20.3972 18.7633 20.1131L17.5894 13.7892L22.2657 9.36095C22.4758 9.16205 22.5527 8.86009 22.4634 8.58493C22.3742 8.30978 22.1346 8.11049 21.8478 8.07277L15.4537 7.23199L12.6766 1.42636Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconStar;\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,EAA2C,CAAC,IAAU,CACjE,OAAO,gBAAmtB,EAAntB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,snBAAsnB,KAAK,eAAc,CAAI,GAG7sB",
  "debugId": "115C704C489D0AE864756E2164756E21",
  "names": []
}