diff --git a/ui/Button.tsx b/ui/Button.tsx new file mode 100644 index 0000000..1c42d0d --- /dev/null +++ b/ui/Button.tsx @@ -0,0 +1,20 @@ +import React from "react"; +import {useCursor} from "@/components/cursor"; +import {cn} from "@/lib/utils"; + +export function Button ({ children, className }: { children?: React.ReactNode, className?: string }) { + const customCursor = useCursor(); + return ( + + ) +} \ No newline at end of file