UNPKG

@sudobility/email-components

Version:

Email marketing and management UI components for React

33 lines 1.01 kB
/** * UsubscriptionUplan Component * * A reusable UsubscriptionUplan component with full dark mode support. * Optimized for accessibility and AI-assisted development. * * @component * @example * ```tsx * <UsubscriptionUplan className="custom-class" /> * ``` * * @remarks * This component supports: * - Light and dark themes automatically * - Responsive design * - Accessibility features * - TypeScript type safety * * @see {@link https://docs.example.com/components/subscription-plan} */ export interface UsubscriptionUplanProps { /** Additional CSS classes */ className?: string; /** Component children */ children?: React.ReactNode; /** Disabled state */ disabled?: boolean; /** Callback when component is interacted with */ onClick?: () => void; } export declare const UsubscriptionUplan: ({ className, children, disabled, onClick, }: UsubscriptionUplanProps) => import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=subscription-plan.d.ts.map