import * as React from "react" import { View } from "@tarojs/components" import { cn } from "@/lib/utils" const Separator = React.forwardRef< React.ElementRef, React.ComponentPropsWithoutRef & { orientation?: "horizontal" | "vertical" decorative?: boolean } >( ( { className, orientation = "horizontal", decorative = true, ...props }, ref ) => ( ) ) Separator.displayName = "Separator" export { Separator }