--- import { Schema } from 'astro-seo-schema' import { cn } from '../lib/cn' import { makeOverallScoreInfo } from '../lib/overallScore' import { KYCNOTME_SCHEMA_MINI } from '../lib/schema' import { transformCase } from '../lib/strings' import type { HTMLAttributes } from 'astro/types' export type Props = HTMLAttributes<'div'> & { score: number label: string total?: number itemReviewedId?: string } const { score, label, total = 10, class: className, itemReviewedId, ...htmlProps } = Astro.props const { text, classNameBg, formattedScore } = makeOverallScoreInfo(score, total) ---