import { cn } from "@app/core/utils/cn.js"; import { AlignLeftIcon, type LucideIcon } from "lucide-react"; export interface PageLayoutProps { label: string; noPadding?: boolean; children: React.ReactNode; actions?: { icon: LucideIcon; onClick: () => void; }[]; } export const PageLayout = ({ label, noPadding, actions, children, }: PageLayoutProps): JSX.Element => { return (