@react-email/row
Version:
A React row component
11 lines (8 loc) • 409 B
TypeScript
import * as React from 'react';
type RowProps = Readonly<React.ComponentPropsWithoutRef<"table"> & {
children: React.ReactNode;
}>;
declare const Row: React.ForwardRefExoticComponent<Readonly<Omit<React.DetailedHTMLProps<React.TableHTMLAttributes<HTMLTableElement>, HTMLTableElement>, "ref"> & {
children: React.ReactNode;
}> & React.RefAttributes<HTMLTableElement>>;
export { Row, type RowProps };