aboutsummaryrefslogtreecommitdiff
path: root/src/components/ui/button.tsx
blob: 32b9aaccf834392b02e65f3626dfa9a00f1d48ab (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)}
    />
  );
};