import { Box } from './box'; import { type ComponentProps, type ReactElement, type ReactNode } from 'react'; import { DudeBadge } from './graphics/dude-badge'; export const CompetitionsActionsContainer = ({ children, }: { children: | ReactElement | Iterable>; }) => (
{children}
); export const CompetitionsAction = ({ variant, title, description, actionElement, }: { variant: ComponentProps['variant']; title: string; description?: string; actionElement: ReactNode; }) => { return (

{title}

{description &&

{description}

}
{actionElement}
); };