@openhands/ui
Version:
OpenHands UI Components
6 lines (5 loc) • 323 B
TypeScript
import { BaseProps, HTMLProps } from '../../shared/types';
export type DividerProps = Omit<HTMLProps<"div">, "role" | "aria-orientation"> & {
type?: "horizontal" | "vertical";
} & BaseProps;
export declare const Divider: ({ type, className, testId, ...props }: DividerProps) => import("react/jsx-runtime").JSX.Element;