12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import type { HtmlProps } from '@/types';
|
|
import { cn } from '@/utils/cn';
|
|
|
|
export function ButtonContainer({
|
|
className,
|
|
...props
|
|
}: HtmlProps<HTMLDivElement>) {
|
|
return (
|
|
<div className={cn('flex justify-between mt-6', className)} {...props} />
|
|
);
|
|
}
|