katoikia-app/web-ui/web-react/node_modules/primereact/divider/divider.d.ts

18 lines
463 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 {
align?: DividerAlignType;
layout?: DividerLayoutType;
type?: DividerBorderType;
style?: object;
className?: string;
}
export declare class Divider extends React.Component<DividerProps, any> { }