import { HTMLAttributes } from "react"; export interface DividerProps extends HTMLAttributes { orientation?: "horizontal" | "vertical"; } export default function Divider({ orientation = "horizontal", className = "", ...props }: DividerProps) { return (
); }