import clsx from "clsx" import { ButtonHTMLAttributes, ElementType, PropsWithChildren } from "react" type Props = PropsWithChildren & ButtonHTMLAttributes & { icon: ElementType } export default function AnswerButton({ className, icon: Icon, children, ...otherProps }: Props) { return ( ) }