UNPKG

@sudobility/email-components

Version:

Email marketing and management UI components for React

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