Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/dashboard/src/repositories/detail/ConfigurationSettingsField.tsx
2501 views
1
/**
2
* Copyright (c) 2023 Gitpod GmbH. All rights reserved.
3
* Licensed under the GNU Affero General Public License (AGPL).
4
* See License.AGPL.txt in the project root for license information.
5
*/
6
7
import { cn } from "@podkit/lib/cn";
8
9
type Props = {
10
children: React.ReactNode;
11
className?: string;
12
};
13
export const ConfigurationSettingsField = ({ children, className }: Props) => {
14
return <div className={cn("border border-pk-border-base rounded-xl p-6", className)}>{children}</div>;
15
};
16
17