@cuvp1225/tango-mail
Version:
react mail components for tango
17 lines (16 loc) • 422 B
TypeScript
import React from 'react';
export interface SectionProps extends React.ComponentPropsWithoutRef<'table'> {
/**
* 内边距
*/
p?: string;
/**
* 背景色
*/
bg?: string;
/**
* 文本色
*/
color?: string;
}
export declare const Section: React.ForwardRefExoticComponent<SectionProps & import("@music163/tango-boot").TangoComponentProps & React.RefAttributes<unknown>>;