import { IconConceptBlock, IconDownload, IconRSForm, IconRSFormImported, IconRSFormOwned, IconSynthesis } from '@/components/icons'; import { cn } from '@/components/utils'; import { ValueStats } from '@/components/view'; import { type IOperationSchemaStats } from '../models/oss'; interface OssStatsProps { className?: string; stats: IOperationSchemaStats; } export function OssStats({ className, stats }: OssStatsProps) { return ( ); }