{
  "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=\"M13.5894 1.99755C12.9495 0.667485 11.0494 0.667485 10.4095 1.99755L8.23644 6.51389C8.19896 6.59179 8.12314 6.64774 8.03302 6.65952L3.03465 7.31296C1.56799 7.5047 0.968302 9.31183 2.05312 10.3331L5.70632 13.7724C5.77055 13.8329 5.79841 13.9201 5.78273 14.0041L4.86513 18.9186C4.59205 20.3812 6.14171 21.4835 7.43667 20.7865L11.8725 18.3989C11.9515 18.3563 12.0474 18.3563 12.1264 18.3989L16.5622 20.7865C17.8572 21.4835 19.4069 20.3812 19.1338 18.9186L18.2162 14.0041C18.2005 13.9201 18.2284 13.8329 18.2926 13.7724L21.9458 10.3331C23.0306 9.31183 22.4309 7.5047 20.9643 7.31296L15.9659 6.65952C15.8758 6.64774 15.8 6.59179 15.7625 6.51389L13.5894 1.99755Z\" 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,gBAA+uB,EAA/uB,IAAqB,EAAO,UAAU,yBAAwB,gBAAC,OAAD,CAAM,EAAE,kpBAAkpB,KAAK,eAAc,CAAI,GAGzuB",
  "debugId": "BD8F74E071F94E5D64756E2164756E21",
  "names": []
}