import clsx from 'clsx';
import type { HTMLAttributes, PropsWithChildren } from 'react';
import { forwardRef } from 'react';
import * as styles from './style.css';
export type DividerOrientation = 'horizontal' | 'vertical';
export type DividerProps = PropsWithChildren &
Omit, 'type'> & {
orientation?: DividerOrientation;
size?: 'thinner' | 'default';
dividerColor?: string;
};
export const Divider = forwardRef(
(
{
orientation = 'horizontal',
size = 'default',
dividerColor = 'var(--affine-border-color)',
style,
className,
...otherProps
},
ref
) => {
return (
);
}
);
Divider.displayName = 'Divider';
export default Divider;