import { type TeactNode } from '../../lib/teact/teact'; import buildClassName from '../../util/buildClassName'; import styles from './BadgeButton.module.scss'; type OwnProps = { children: TeactNode; className?: string; isPlain?: boolean; inline?: boolean; onClick?: (e: React.MouseEvent) => void; onMouseDown?: (e: React.MouseEvent) => void; }; const BadgeButton = ({ children, className, isPlain, inline, onClick, onMouseDown, }: OwnProps) => { return (
{children}
); }; export default BadgeButton;