import type React from '../../lib/teact/teact'; import buildClassName from '../../util/buildClassName'; import useOldLang from '../../hooks/useOldLang'; import styles from './Separator.module.scss'; type OwnProps = { children?: React.ReactNode; className?: string; }; function Separator({ children, className }: OwnProps) { const lang = useOldLang(); return (