import PlainButton, { ButtonType } from "./PlainButton"; export default function DarkButton({ onClick, className, selected, children, type = "button", disabled }: { onClick?: (() => void) | undefined; className?: string; selected?: boolean; children?: React.ReactNode; type?: ButtonType; disabled?: boolean; }) { return ( {children} ); }