@react-md/divider
Version:
This package is used to create horizontal or vertical dividers in your application.
15 lines (14 loc) • 818 B
TypeScript
import type { HTMLAttributes } from "react";
export interface VerticalDividerProps extends HTMLAttributes<HTMLDivElement> {
/** {@inheritDoc VerticalDividerHookOptions.maxHeight} */
maxHeight?: number;
}
/**
* This component is used to create a vertical divider based on a parent
* element's height. This is really only needed when the parent element **has no
* defined height**. If there is a defined height, this component is not worth
* much as the height can be computed in css as normal. This really just fixes
* the issue that the height would be set to `auto` (which computes to 0 most of
* the time) when it is not set on a parent element.
*/
export declare const VerticalDivider: import("react").ForwardRefExoticComponent<VerticalDividerProps & import("react").RefAttributes<HTMLDivElement>>;