You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

31 lines
792 B

import * as React from 'react';
import classNames from 'classnames';
export interface DividerProps {
prefixCls?: string;
type?: 'horizontal' | 'vertical';
className?: string;
children?: React.ReactNode;
dashed?: boolean;
style?: React.CSSProperties;
}
export default function Divider({
prefixCls = 'ant',
type = 'horizontal',
className,
children,
dashed,
...restProps,
}: DividerProps) {
const classString = classNames(
className, `${prefixCls}-divider`, `${prefixCls}-divider-${type}`, {
[`${prefixCls}-divider-with-text`]: children,
[`${prefixCls}-divider-dashed`]: !!dashed,
});
return (
<div className={classString} {...restProps}>
{children && <span className={`${prefixCls}-divider-inner-text`}>{children}</span>}
</div>
);
}