import React from 'react'; /** * Separator component for dividing sections in the UI. * Renders a horizontal line with optional styling for light/dark mode. */ export function Separator({ className = '' }) { return (

); }