/** * Chips Tab Component * Configure the appearance and behavior of individual variation chips (swatches). */ import { BaseTabProps } from "../types"; import { ColorPicker } from "../../components/ColorPicker"; import { HighlightableField } from "../../components/HighlightableField"; export interface ChipsTabProps extends BaseTabProps {} export function ChipsTab({ settings, setSettings, adminColor }: ChipsTabProps) { return (

Variation Chips

Configure the appearance and behavior of individual variation chips (swatches).

{/* General Chip Settings */}
setSettings({ ...settings, selected_color: value }) } />
); }