import React, { ButtonHTMLAttributes } from 'react'; type Props = { children: React.ReactNode; className?: string; } & ButtonHTMLAttributes; export default function RoundedButton({ children, className = '', ...props }: Props) { return ( ); }