ui(platform-analytics): 💄 Add realtime-page.png background asset for RealTimeDashboard component

Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
Claude Code 2026-03-19 09:08:23 -07:00
parent ac587e79c1
commit e6b7ae1c50
2 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@
import { memo } from 'react';
import styled from '@lilith/ui-styled-components';
import { UsersIcon, DollarSignIcon, ActivityIcon, TrendingUpIcon, ZapIcon, AlertCircleIcon } from '@lilith/ui-icons';
import { UsersIcon, DollarSignIcon, ActivityIcon as ActivitySvgIcon, TrendingUpIcon, ZapIcon, AlertCircleIcon } from '@lilith/ui-icons';
import { formatDistanceToNow } from 'date-fns';
import { useAnalyticsWebSocket } from '../hooks/useAnalyticsWebSocket';
@ -347,12 +347,12 @@ const getActivityIcon = (eventType: string) => {
switch (eventType) {
case 'transaction':
case 'revenue':
return DollarSign;
return DollarSignIcon;
case 'signup':
case 'user':
return Users;
return UsersIcon;
default:
return Activity;
return ActivitySvgIcon;
}
};

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 44 KiB