well deserved clean up (#1)
This commit is contained in:
11
apps/dashboard/src/components/button-container.tsx
Normal file
11
apps/dashboard/src/components/button-container.tsx
Normal file
@@ -0,0 +1,11 @@
|
||||
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} />
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user