mirror of
https://github.com/urbit/shrub.git
synced 2024-12-20 01:01:37 +03:00
531fd61ace
Add a new tab to the top bar that shows an alert with a brief usage guide.
20 lines
421 B
TypeScript
20 lines
421 B
TypeScript
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>
|
|
</>
|
|
);
|
|
};
|