import type {FC} from 'react'; import {Button} from '../../../components/Button/Button'; import {SettingsIcon} from '../../../components/icons/SettingsIcon'; import {GitHubIcon} from '../../../components/icons/GitHubIcon'; import {HeartIcon} from '../../../components/icons/HeartIcon'; import styles from './FooterActions.module.scss'; interface FooterActionsProps { onSettings: () => void; onGitHub: () => void; onSupport: () => void; } export const FooterActions: FC = ({ onSettings, onGitHub, onSupport, }) => (
);