UNPKG

@openhands/ui

Version:
6 lines (5 loc) 323 B
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;