import { HStack } from './LayoutPrimitives' import type { ReactNode } from 'react' type SeparatorProps = { children?: ReactNode width?: string color?: string } export function Separator(props: SeparatorProps): JSX.Element { const color = props.color ?? '$orange9' const width = props.width ?? '100%' return ( {props.children} ) }