mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-18 08:37:48 +01:00
7 lines
224 B
TypeScript
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} />;
|
|
}
|