UNPKG

@itwin/itwinui-react

Version:

A react component library for iTwinUI

14 lines (13 loc) 354 B
import type { PolymorphicForwardRefComponent } from '../../utils/props.js'; type DividerProps = { /** * Sets the orientation of the divider * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; }; /** * Shows a divider */ export declare const Divider: PolymorphicForwardRefComponent<"hr", DividerProps>; export {};