1 import type { FC, ReactNode } from 'react';
3 import clsx from '@proton/utils/clsx';
6 backgroundColor?: string;
12 export const PillBadge: FC<Props> = ({
13 backgroundColor = 'var(--interaction-norm)',
15 color = 'var(--interaction-norm-contrast)',
19 className={clsx('text-sm inline-block rounded-full text-normal inline-block px-2 py-0.5', className)}
20 style={{ backgroundColor, color }}