import clsx from "clsx"; import type { ReactNode } from "react"; import React from "react"; import Button from "../ui/button"; type TextButtonProps = { children: ReactNode | string; icon?: ReactNode; onClick?: () => void; className?: string; }; export default function TextButton({ children, onClick, icon, className }: TextButtonProps) { return ( ); }