From fb13ad9a2f9b3aeb00a441ec0175e54233e452fe Mon Sep 17 00:00:00 2001 From: Albert Schilling <59568178+albert-schilling@users.noreply.github.com> Date: Thu, 12 Dec 2024 17:15:33 +0100 Subject: [PATCH] Update IconButtonKinds Add missing danger and ghost kinds --- packages/react/src/components/IconButton/index.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/packages/react/src/components/IconButton/index.tsx b/packages/react/src/components/IconButton/index.tsx index 224d757e40db..82a4114e4c45 100644 --- a/packages/react/src/components/IconButton/index.tsx +++ b/packages/react/src/components/IconButton/index.tsx @@ -17,8 +17,12 @@ import deprecateValuesWithin from '../../prop-types/deprecateValuesWithin'; export const IconButtonKinds = [ 'primary', 'secondary', + 'tertiary', 'ghost', 'tertiary', + 'danger', + 'danger--tertiary', + 'danger--ghost' ] as const; export type IconButtonKind = (typeof IconButtonKinds)[number];