mitre-form-component
Version:
Componente de formulário de captação de leads para ser usado em projetos da Mitre Realty.
27 lines (23 loc) • 722 B
text/typescript
import React from 'react';
interface Product {
id: number;
name: string;
}
interface MitreFormComponentProps {
products: Product[];
apiUrl: string;
apiToken: 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 };