'use client'; import React from 'react'; import { TrendingUp } from 'lucide-react'; import { Heading } from '@/ui/Heading'; import { Text } from '@/ui/Text'; import { Box } from '@/ui/Box'; import { Stack } from '@/ui/Stack'; interface DriverTableProps { children: React.ReactNode; } export function DriverTable({ children }: DriverTableProps) { return ( Driver Rankings Top performers by skill rating # Driver Nationality Rating Wins {children} ); }