// // Copyright 2023 DXOS.org // import { Separator as SeparatorPrimitive, type SeparatorProps as SeparatorPrimitiveProps, } from '@radix-ui/react-separator'; import React, { forwardRef } from 'react'; import { useThemeContext } from '../../hooks'; import { type ThemedClassName } from '../../util'; type SeparatorProps = ThemedClassName & { subdued?: boolean }; const Separator = forwardRef( ({ classNames, orientation = 'horizontal', subdued, ...props }, forwardedRef) => { const { tx } = useThemeContext(); return ( ); }, ); export type { SeparatorProps }; export { Separator };