shrub/pkg/interface/webterm/InfoButton.tsx

20 lines
421 B
TypeScript
Raw Normal View History

import React, { useCallback } from 'react';
import { Icon } from '@tlon/indigo-react';
export const InfoButton = () => {
const onInfoClick = useCallback(() => {
alert('To select text in the terminal, hold down the alt key.');
}, []);
return (
<>
<button className="info-btn" onClick={onInfoClick}>
<Icon
icon="Info"
size="18px"
/>
</button>
</>
);
};