ant-design/components/divider/index.tsx

23 lines
577 B
TypeScript
Raw Normal View History

import React from 'react';
import classNames from 'classnames';
export default function Divider({
prefixCls = 'ant',
type = 'horizontal',
className,
children,
2017-10-26 20:59:36 +08:00
dashed,
...restProps,
}) {
2017-10-26 20:59:36 +08:00
const classString = classNames(
className, `${prefixCls}-divider`, `${prefixCls}-divider-${type}`, {
[`${prefixCls}-divider-with-text`]: children,
2017-10-26 20:59:36 +08:00
[`${prefixCls}-divider-dashed`]: !!dashed,
});
return (
<div className={classString} {...restProps}>
{children && <span className={`${prefixCls}-divider-inner-text`}>{children}</span>}
</div>
);
}