@aappddeevv/dynamics-client-ui
Version:
## What is it? A library to help you create great dynamics applications.
12 lines (11 loc) • 474 B
TypeScript
/// <reference types="react" />
/**
* Draws a horizontal line, no text, very simple.
* Pure presentational component. Line is drawn using
* the border. Pass in style props to modify style.
*/
import * as React from "react";
export interface Props extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
}
export declare function VerticalSeparator({className, style, ...rest}: Props): JSX.Element | null;
export default VerticalSeparator;