Skip to content

Commit

Permalink
fix: NewModal shall have also 'info' variant (blue)
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-sanderson committed Nov 27, 2024
1 parent 4d24e2b commit aff99b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/NewModal/types.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { UIVariant, UISize, UIHorizontalAlignment, UIVerticalAlignment } from '../../config/types';

export const newModalVariants = ['primary', 'warning', 'destructive'] as const;
export const newModalVariants = ['primary', 'warning', 'destructive', 'info'] as const;
export type NewModalVariant = Extract<UIVariant, (typeof newModalVariants)[number]>;

export const newModalSizes = ['huge', 'large', 'medium', 'small', 'tiny'] as const;
Expand Down

0 comments on commit aff99b8

Please sign in to comment.