/* Copyright 2026 Marimo. All rights reserved. */ import type { HTMLProps, PropsWithChildren } from "react"; import type { SqlOutputType } from "@/core/config/config-schema"; import { cn } from "@/utils/cn"; export const formItemClasses = "flex flex-row items-center space-x-1 space-y-0"; export const SettingTitle: React.FC = ({ children }) => { return (
{children}
); }; export const SettingSubtitle: React.FC> = ({ children, className, ...props }) => { return (
{children}
); }; export const SettingDescription: React.FC = ({ children, }) => { return

{children}

; }; export const SettingGroup: React.FC<{ title: string; children: React.ReactNode; }> = ({ title, children }) => { return (
{title} {children}
); }; export const SQL_OUTPUT_SELECT_OPTIONS: { label: string; value: SqlOutputType; }[] = [ { label: "Auto (Default)", value: "auto" }, { label: "Native", value: "native" }, { label: "Polars", value: "polars" }, { label: "Lazy Polars", value: "lazy-polars" }, { label: "Pandas", value: "pandas" }, ];