mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-15 13:43:39 +01:00
15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
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}
|
|
/>
|
|
);
|
|
}
|