mitre-form-component
Version:
Componente de formulário de captação de leads para ser usado em projetos da Mitre Realty.
26 lines (23 loc) • 762 B
TypeScript
import React from 'react';
interface MitreFormComponentProps {
productId: string;
apiUrl: string;
apiToken: string;
utm_source: string;
utm_medium?: string;
utm_campaign?: string;
utm_term?: string;
showHeader?: boolean;
backgroundColor?: string;
buttonBackgroundColor?: string;
buttonTextColor?: string;
textColor?: string;
innerPadding?: string;
inputBackgroundColor?: string;
inputFocusBorderColor?: string;
inputBorderColor?: string;
inputTextColor?: string;
inputPlaceholderColor?: string;
}
declare const MitreFormComponent: React.ForwardRefExoticComponent<MitreFormComponentProps & React.RefAttributes<HTMLDivElement>>;
export { MitreFormComponent, type MitreFormComponentProps };