1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2026-06-19 08:15:28 -04:00

do react types more better too 🧠

This commit is contained in:
2025-05-19 17:58:03 -04:00
parent 51708c9b17
commit f4c69292df
41 changed files with 141 additions and 194 deletions
+1 -2
View File
@@ -2,14 +2,13 @@
import * as SeparatorPrimitive from "@radix-ui/react-separator";
import { cn } from "@/lib/utils";
import type { ComponentPropsWithoutRef } from "react";
const Separator = ({
className,
orientation = "horizontal",
decorative = true,
...rest
}: ComponentPropsWithoutRef<typeof SeparatorPrimitive.Root>) => {
}: React.ComponentProps<typeof SeparatorPrimitive.Root>) => {
return (
<SeparatorPrimitive.Root
data-slot="separator-root"