primereact
Version:
PrimeReact is an open source UI library for React featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime
19 lines (13 loc) • 591 B
TypeScript
import * as React from 'react';
type DividerAlignType = 'center' | 'left' | 'right' | 'bottom' | 'top';
type DividerLayoutType = 'vertical' | 'horizontal';
type DividerBorderType = 'solid' | 'dashed' | 'dotted';
export interface DividerProps extends Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, 'ref'> {
align?: DividerAlignType;
layout?: DividerLayoutType;
type?: DividerBorderType;
children?: React.ReactNode;
}
export declare class Divider extends React.Component<DividerProps, any> {
public getElement(): HTMLDivElement;
}