Files
yaak-mountain-loop/src-web/components/core/BadgeButton.tsx
2025-04-15 07:18:26 -07:00

7 lines
224 B
TypeScript

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} />;
}