import type { FC } from '../../lib/teact/teact'; import React from '../../lib/teact/teact'; import buildClassName from '../../util/buildClassName'; import styles from './MenuSeparator.module.scss'; type OwnProps = { className?: string; size?: 'thin' | 'thick'; }; const MenuSeparator: FC = ({ className, size = 'thin' }) => { return (
); }; export default MenuSeparator;