import React from 'react'; import { cx } from '@leafygreen-ui/emotion'; import { useDarkMode } from '@leafygreen-ui/leafygreen-provider'; import { badgeVariants, baseStyle } from './Badge.styles'; import { BadgeProps, Variant } from './Badge.types'; /** * Badges can be used to highlight information or the status of something. */ function Badge({ children, variant = Variant.LightGray, className, darkMode: darkModeProp, ...rest }: BadgeProps) { const { theme } = useDarkMode(darkModeProp); return (