import type { UiTheme } from "../theme" const DIVIDER_LINE = "─".repeat(256) type SectionDividerProps = { theme: UiTheme } export function SectionDivider({ theme }: SectionDividerProps) { return ( {DIVIDER_LINE} ) }