diff --git a/packages/theme/src/theme.ts b/packages/theme/src/theme.ts index 96bc860c..7cd7703f 100644 --- a/packages/theme/src/theme.ts +++ b/packages/theme/src/theme.ts @@ -53,7 +53,12 @@ export type InteractiveColorName = keyof Theme['color']['interactive']; export type InteractiveColors = Theme['color']['interactive']; export type InteractiveState = keyof InteractiveColor; -export type GeofencingZoneCode = 'allowed' | 'slow' | 'noParking' | 'noEntry'; +export type GeofencingZoneCode = + | 'allowed' + | 'slow' + | 'parking' + | 'noParking' + | 'noEntry'; export type GeofencingZoneStyle = { color: T;