mirror of
https://github.com/owncast/owncast.git
synced 2024-12-21 08:49:16 +03:00
31 lines
870 B
TypeScript
31 lines
870 B
TypeScript
import { Button } from 'antd';
|
|
import { FC } from 'react';
|
|
import cn from 'classnames';
|
|
import { ExternalAction } from '../../../interfaces/external-action';
|
|
import styles from './ActionButton.module.scss';
|
|
|
|
export type ActionButtonProps = {
|
|
action: ExternalAction;
|
|
primary?: boolean;
|
|
externalActionSelected: (action: ExternalAction) => void;
|
|
};
|
|
|
|
export const ActionButton: FC<ActionButtonProps> = ({
|
|
action,
|
|
primary = true,
|
|
externalActionSelected,
|
|
}) => {
|
|
const { title, description, icon, color } = action;
|
|
|
|
return (
|
|
<Button
|
|
type={primary ? 'primary' : 'default'}
|
|
className={cn([`${styles.button}`, 'action-button'])}
|
|
onClick={() => externalActionSelected(action)}
|
|
style={{ backgroundColor: color }}
|
|
>
|
|
{icon && <img src={icon} className={`${styles.icon}`} alt={description} />}
|
|
{title}
|
|
</Button>
|
|
);
|
|
};
|