import { Home } from "@mui/icons-material"; import React from "react"; import { ColorInput } from "../components/form/color"; import { ColorPicker } from "../components/form/colorPicker"; import { NumberedSection } from "../components/form/numberedSection"; import { SelectInput } from "../components/form/select"; import { actionBackgroundColor, actionTextColor, backgroundColor, cancelBackgroundColor, cancelTextColor, closeColor, fieldBackgroundColor, headlineColor, textColor, theme, } from "../data/pfa-fields"; interface BrandingSectionProps { formValues: { [key: string]: string }; handleChange: (id: string, value: string) => void; formFieldVisibility: { [key: string]: boolean }; } export const BrandingSection: React.FC = ({ formValues, handleChange, formFieldVisibility, }) => { return ( } headline={"How would you like to configure the design of your widget?"} > ); };