52 lines
2.2 KiB
TypeScript
52 lines
2.2 KiB
TypeScript
'use client';
|
|
|
|
import React from 'react';
|
|
import { Users, Shield } from 'lucide-react';
|
|
import { Grid } from '@/ui/Grid';
|
|
import { Card } from '@/ui/Card';
|
|
import { Stack } from '@/ui/Stack';
|
|
import { Box } from '@/ui/Box';
|
|
import { Text } from '@/ui/Text';
|
|
import { Icon } from '@/ui/Icon';
|
|
import { Surface } from '@/ui/Surface';
|
|
|
|
interface UserStatsSummaryProps {
|
|
total: number;
|
|
activeCount: number;
|
|
adminCount: number;
|
|
}
|
|
|
|
export function UserStatsSummary({ total, activeCount, adminCount }: UserStatsSummaryProps) {
|
|
return (
|
|
<Grid cols={3} gap={4}>
|
|
<Surface variant="muted" rounded="xl" border padding={4} style={{ background: 'linear-gradient(to bottom right, rgba(30, 58, 138, 0.2), rgba(29, 78, 216, 0.1))', borderColor: 'rgba(59, 130, 246, 0.2)' }}>
|
|
<Stack direction="row" align="center" justify="between">
|
|
<Box>
|
|
<Text size="sm" color="text-gray-400" block mb={1}>Total Users</Text>
|
|
<Text size="2xl" weight="bold" color="text-white">{total}</Text>
|
|
</Box>
|
|
<Icon icon={Users} size={6} color="#60a5fa" />
|
|
</Stack>
|
|
</Surface>
|
|
<Surface variant="muted" rounded="xl" border padding={4} style={{ background: 'linear-gradient(to bottom right, rgba(20, 83, 45, 0.2), rgba(21, 128, 61, 0.1))', borderColor: 'rgba(16, 185, 129, 0.2)' }}>
|
|
<Stack direction="row" align="center" justify="between">
|
|
<Box>
|
|
<Text size="sm" color="text-gray-400" block mb={1}>Active</Text>
|
|
<Text size="2xl" weight="bold" color="text-white">{activeCount}</Text>
|
|
</Box>
|
|
<Text color="text-performance-green" weight="bold">✓</Text>
|
|
</Stack>
|
|
</Surface>
|
|
<Surface variant="muted" rounded="xl" border padding={4} style={{ background: 'linear-gradient(to bottom right, rgba(88, 28, 135, 0.2), rgba(126, 34, 206, 0.1))', borderColor: 'rgba(168, 85, 247, 0.2)' }}>
|
|
<Stack direction="row" align="center" justify="between">
|
|
<Box>
|
|
<Text size="sm" color="text-gray-400" block mb={1}>Admins</Text>
|
|
<Text size="2xl" weight="bold" color="text-white">{adminCount}</Text>
|
|
</Box>
|
|
<Icon icon={Shield} size={6} color="#a855f7" />
|
|
</Stack>
|
|
</Surface>
|
|
</Grid>
|
|
);
|
|
}
|