"use client"; import React from "react"; import { Label } from "@/components/ui/label"; import { Checkbox } from "@/components/ui/checkbox"; export interface StyleConfigPanelProps { config: any; onChange: (key: string, value: any) => void; onNestedChange: (parentKey: string, childKey: string, value: any) => void; } /** * 스타일 설정 패널: 테이블 스타일 (theme, headerStyle, rowHeight 등) */ export const StyleConfigPanel: React.FC = ({ config, onNestedChange, }) => { const tableStyle = config.tableStyle || {}; return (

테이블 스타일

테이블의 시각적 스타일을 설정합니다


onNestedChange("tableStyle", "alternateRows", checked)} />
onNestedChange("tableStyle", "hoverEffect", checked)} />
); };