* refactor: move Segment, BookerLayoutSelector, CreateLicenseKeyForm from packages/features to apps/web/modules Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix: update relative imports to absolute paths in moved files Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: move useBookingLocation and blocklist components from packages/features to apps/web/modules Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * refactor: move EmbedTabs and embed hooks from packages/features to apps/web/modules Co-Authored-By: benny@cal.com <sldisek783@gmail.com> * fix * migrate useBookerUrl * migrate embed tabs * fix * fix * fix * mv ThemeLabel * mv settings headers to webn * update imports * clean up --------- Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
27 lines
517 B
TypeScript
27 lines
517 B
TypeScript
import type { ReactNode } from "react";
|
|
|
|
import classNames from "@calcom/ui/classNames";
|
|
|
|
const SectionBottomActions = ({
|
|
align = "start",
|
|
children,
|
|
className,
|
|
}: {
|
|
align?: "start" | "end";
|
|
children: ReactNode;
|
|
className?: string;
|
|
}) => {
|
|
return (
|
|
<div
|
|
className={classNames(
|
|
"border-subtle bg-cal-muted flex rounded-b-lg border px-6 py-4",
|
|
align === "end" && "justify-end",
|
|
className
|
|
)}>
|
|
{children}
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default SectionBottomActions;
|