move static data
This commit is contained in:
29
adapters/bootstrap/RenewalConfig.ts
Normal file
29
adapters/bootstrap/RenewalConfig.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
/**
|
||||
* Renewal Alert Configuration
|
||||
*
|
||||
* UI display configuration for renewal alerts
|
||||
*/
|
||||
|
||||
export type RenewalType = 'league' | 'team' | 'driver' | 'race' | 'platform';
|
||||
|
||||
export interface RenewalConfigData {
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export const renewalConfig: Record<RenewalType, RenewalConfigData> = {
|
||||
league: {
|
||||
icon: 'Trophy',
|
||||
},
|
||||
team: {
|
||||
icon: 'Users',
|
||||
},
|
||||
driver: {
|
||||
icon: 'Car',
|
||||
},
|
||||
race: {
|
||||
icon: 'Flag',
|
||||
},
|
||||
platform: {
|
||||
icon: 'Megaphone',
|
||||
},
|
||||
} as const;
|
||||
Reference in New Issue
Block a user