{"version":3,"file":"Stars-BFBIimWY.js","sources":["../../../app/javascript/components/BookReview/Stars.tsx"],"sourcesContent":["import { StarIcon } from \"@heroicons/react/solid\";\nimport classNames from \"lib/classNames\";\n\nexport interface UserBookRatingProps {\n rating?: number;\n size?: number;\n}\n\nexport default function Stars({\n rating = null,\n size = 6,\n}: UserBookRatingProps) {\n const halfSize = size / 2;\n\n return (\n