import type { ComponentPropsWithoutRef, FC } from "react" import { cn } from "../../libs/utils" export type VerticalDividerProps = ComponentPropsWithoutRef<"div"> export const VerticalDivider: FC = ({ className, ...props }) => { return (
) }