UNPKG

@sudobility/email-components

Version:

Email marketing and management UI components for React

18 lines 465 B
/** * ContactCard Component * * CRM component with full dark mode support. * * @component * @example * ```tsx * <ContactCard className="custom-class" /> * ``` */ export interface ContactCardProps { className?: string; children?: React.ReactNode; disabled?: boolean; } export declare const ContactCard: ({ className, children, disabled, }: ContactCardProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=contact-card.d.ts.map