{
  "version": 3,
  "sources": ["src/CentralIconBase/index.tsx", "src/IconReview/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 IconReview: React.FC<CentralIconBaseProps> = (props) => {\n  return <CentralIconBase {...props} ariaLabel=\"review,star-square\"><path fillRule=\"evenodd\" clipRule=\"evenodd\" d=\"M3 4.75C3 3.7835 3.7835 3 4.75 3H19.25C20.2165 3 21 3.7835 21 4.75V19.25C21 20.2165 20.2165 21 19.25 21H4.75C3.7835 21 3 20.2165 3 19.25V4.75ZM12.0149 7.48305C12.257 7.48305 12.478 7.62047 12.5852 7.83755L13.5586 9.80993L15.7353 10.1262C15.9748 10.161 16.1738 10.3288 16.2486 10.559C16.3234 10.7893 16.261 11.042 16.0877 11.2109L14.5127 12.7462L14.8845 14.9141C14.9254 15.1527 14.8273 15.3938 14.6315 15.5361C14.4356 15.6784 14.176 15.6971 13.9617 15.5845L12.0149 14.561L10.068 15.5845C9.85376 15.6971 9.59413 15.6784 9.39829 15.5361C9.20245 15.3938 9.10437 15.1527 9.14529 14.9141L9.51711 12.7462L7.94207 11.2109C7.76873 11.042 7.70634 10.7893 7.78114 10.559C7.85595 10.3288 8.05496 10.161 8.29452 10.1262L10.4712 9.80993L11.4446 7.83755C11.5517 7.62047 11.7728 7.48305 12.0149 7.48305Z\" fill=\"currentColor\"/></CentralIconBase>;\n};\n\nexport default IconReview;\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,EAA6C,CAAC,IAAU,CACnE,OAAO,gBAAs5B,EAAt5B,IAAqB,EAAO,UAAU,sBAAqB,gBAAC,OAAD,CAAM,SAAS,UAAU,SAAS,UAAU,EAAE,sxBAAsxB,KAAK,eAAc,CAAI,GAGh5B",
  "debugId": "50AEC29C82F565FE64756E2164756E21",
  "names": []
}