Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion packages/theme/src/theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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';
Comment on lines +56 to +61

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Waiting for update in Figma variables here, correct that the generated files also needs updates before we can use this in the app.


export type GeofencingZoneStyle<T = ContrastColor> = {
color: T;
Expand Down
Loading