aboutsummaryrefslogtreecommitdiff
path: root/src/components/ui/button.tsx
blob: 29768f6b8a590e2ab7693cb2c72d5311629f164e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { cn } from '@/utils/cn';

export const Button = ({
  className,
  ...props
}: React.ComponentPropsWithRef<'button'>) => {
  return (
    <button
      {...props}
      className={cn('rounded-sm border px-2', 'cursor-pointer', className)}
    />
  );
};