mirror of
https://github.com/OpenHands/OpenHands.git
synced 2025-12-26 05:48:36 +08:00
Co-authored-by: openhands <openhands@all-hands.dev> Co-authored-by: Robert Brennan <contact@rbren.io> Co-authored-by: Robert Brennan <accounts@rbren.io>
14 lines
358 B
TypeScript
14 lines
358 B
TypeScript
import { FaEllipsisV } from "react-icons/fa";
|
|
|
|
interface EllipsisButtonProps {
|
|
onClick: (event: React.MouseEvent<HTMLButtonElement>) => void;
|
|
}
|
|
|
|
export function EllipsisButton({ onClick }: EllipsisButtonProps) {
|
|
return (
|
|
<button data-testid="ellipsis-button" type="button" onClick={onClick}>
|
|
<FaEllipsisV fill="#a3a3a3" />
|
|
</button>
|
|
);
|
|
}
|