'use client' import { forwardRef } from 'react' import * as SeparatorPrimitive from '@radix-ui/react-separator' import classNames from 'classnames' import { type DividerProps } from './Divider.types' import styles from './Divider.module.scss' /** * @deprecated */ const DIVIDER_TEST_ID = 'bezier-divider' /** * `Divider` is a component to visually or semantically separate content. * @example * * ```tsx * * ``` */ export const Divider = forwardRef( ( { orientation = 'horizontal', decorative, withoutSideIndent = false, withoutParallelIndent = false, withoutIndent = false, style, className, ...rest }, forwardedRef ) => (
) )