import type { ReactNode } from "react"; import { m } from "motion/react"; type ActionButtonProps = { children: ReactNode; }; export function ActionButton({ children }: ActionButtonProps) { return ( {children} ); }