"use client"; import React from "react"; import clsx from "clsx"; interface GreenBtnProps { text: string | boolean; mt?: string; onEventBtn?: () => void; border?: boolean; px?: boolean; } export const GreenBtn = ({ text, mt, onEventBtn, px }: GreenBtnProps) => { return ( ); }; interface BorderProps { onEventBtn?: () => void; text: string; mt?: string; px?: boolean; full?: boolean; } export const BorderBtn = ({ onEventBtn, text, mt, px, full }: BorderProps) => { return ( ); }; interface MobBtnProps { text: string; } export const GreenBtnMob = ({ text }: MobBtnProps) => { return ( ); }; export const SimpleGreenBtn = ({ text }: MobBtnProps) => { return ( ); };