Badge: Add darkgrey color (#100699)

This commit is contained in:
Alex Khomenko 2025-02-14 11:57:30 +02:00 committed by GitHub
parent d8b26b0a31
commit dc3de1a1d5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,7 +12,7 @@ import { SkeletonComponent, attachSkeleton } from '../../utils/skeleton';
import { Icon } from '../Icon/Icon';
import { Tooltip } from '../Tooltip/Tooltip';
export type BadgeColor = 'blue' | 'red' | 'green' | 'orange' | 'purple';
export type BadgeColor = 'blue' | 'red' | 'green' | 'orange' | 'purple' | 'darkgrey';
export interface BadgeProps extends HTMLAttributes<HTMLDivElement> {
text: React.ReactNode;