mirror of
https://github.com/whscullin/apple2js.git
synced 2024-01-12 14:14:38 +00:00
30 lines
797 B
TypeScript
30 lines
797 B
TypeScript
import { h, JSX } from 'preact';
|
|
import cs from 'classnames';
|
|
|
|
import styles from './css/ControlButton.module.css';
|
|
|
|
/**
|
|
* Interface for ControlButton.
|
|
*/
|
|
export interface ControlButtonProps {
|
|
icon: string;
|
|
title: string;
|
|
disabled?: boolean;
|
|
active?: boolean;
|
|
onClick: JSX.MouseEventHandler<HTMLButtonElement>;
|
|
}
|
|
|
|
/**
|
|
* Simple button with an icon, tooltip text and a callback.
|
|
*
|
|
* @param icon FontAwesome icon name
|
|
* @param title Tooltip text
|
|
* @param onClick Click callback
|
|
* @returns Control Button component
|
|
*/
|
|
export const ControlButton = ({ active, icon, title, onClick, ...props }: ControlButtonProps) => (
|
|
<button onClick={onClick} title={title} {...props} >
|
|
<i className={cs('fas', `fa-${icon}`, { [styles.active]: active })}></i>
|
|
</button>
|
|
);
|