import React from 'react'; import styles from './clickerbtnfooter.module.css'; import { ETextStyles } from '../../texts'; import { EIcons, Icon } from '../../Icons'; interface IClickerBtnFooter { text: string, className ?: string, onClick(): void } export function ClickerBtnFooter({ text, className, onClick }: IClickerBtnFooter) { return (

{text}

); }