Rename BadgeButton to PillButton

This commit is contained in:
Gregory Schier
2025-11-09 08:18:26 -08:00
parent d7a7a64ec4
commit 75dc82570b
5 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1,14 @@
import classNames from 'classnames';
import type { ButtonProps } from './Button';
import { Button } from './Button';
export function PillButton({ className, ...props }: ButtonProps) {
return (
<Button
size="2xs"
variant="border"
className={classNames(className, '!rounded-full mx-1 !px-3')}
{...props}
/>
);
}