Tweak license badge and fix keyring dep

This commit is contained in:
Gregory Schier
2025-10-01 21:01:27 -07:00
parent 8662b230e7
commit 2152cf87d7
6 changed files with 37 additions and 31 deletions

View File

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