UNPKG

443 BTypeScriptView Raw
1import * as React from "react";
2import { type Props } from "../../common/props";
3export interface DividerProps extends Props, React.HTMLAttributes<HTMLElement> {
4 /**
5 * HTML tag to use for element.
6 *
7 * @default "div"
8 */
9 tagName?: keyof React.JSX.IntrinsicElements;
10}
11/**
12 * Divider component.
13 *
14 * @see https://blueprintjs.com/docs/#core/components/divider
15 */
16export declare const Divider: React.FC<DividerProps>;