35 lines
1.1 KiB
TypeScript
35 lines
1.1 KiB
TypeScript
import { Stack } from '@/ui/Stack';
|
|
import { Text } from '@/ui/Text';
|
|
|
|
interface SponsorActivityItemProps {
|
|
message: string;
|
|
time: string;
|
|
typeColor: string;
|
|
formattedImpressions?: string | null;
|
|
}
|
|
|
|
export function SponsorActivityItem({
|
|
message,
|
|
time,
|
|
typeColor,
|
|
formattedImpressions,
|
|
}: SponsorActivityItemProps) {
|
|
return (
|
|
<Stack direction="row" align="start" gap={3} py={3} borderBottom={true} borderColor="border-charcoal-outline/50">
|
|
<Stack width="2" height="2" rounded="full" mt={2} className={typeColor} flexShrink={0} />
|
|
<Stack flexGrow={1} minWidth="0">
|
|
<Text size="sm" color="text-white" block truncate>{message}</Text>
|
|
<Stack direction="row" align="center" gap={2} mt={1}>
|
|
<Text size="xs" color="text-gray-500">{time}</Text>
|
|
{formattedImpressions && (
|
|
<>
|
|
<Text size="xs" color="text-gray-600">•</Text>
|
|
<Text size="xs" color="text-gray-400">{formattedImpressions} views</Text>
|
|
</>
|
|
)}
|
|
</Stack>
|
|
</Stack>
|
|
</Stack>
|
|
);
|
|
}
|