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];