{"version":3,"file":"index.mjs","names":[],"sources":["../src/section.tsx"],"sourcesContent":["import * as React from 'react';\n\nexport type SectionProps = Readonly<React.ComponentPropsWithoutRef<'table'>>;\n\nexport const Section = React.forwardRef<HTMLTableElement, SectionProps>(\n  ({ children, style, ...props }, ref) => {\n    return (\n      <table\n        align=\"center\"\n        width=\"100%\"\n        border={0}\n        cellPadding=\"0\"\n        cellSpacing=\"0\"\n        role=\"presentation\"\n        {...props}\n        ref={ref}\n        style={style}\n      >\n        <tbody>\n          <tr>\n            <td>{children}</td>\n          </tr>\n        </tbody>\n      </table>\n    );\n  },\n);\n\nSection.displayName = 'Section';\n"],"mappings":";;;;AAIA,MAAa,UAAU,MAAM,YAC1B,EAAE,UAAU,MAAO,GAAG,SAAS,QAAQ;AACtC,QACE,oBAAC;EACC,OAAM;EACN,OAAM;EACN,QAAQ;EACR,aAAY;EACZ,aAAY;EACZ,MAAK;EACL,GAAI;EACC;EACE;YAEP,oBAAC,qBACC,oBAAC,kBACC,oBAAC,QAAI,WAAc,GAChB,GACC;GACF;EAGb;AAED,QAAQ,cAAc"}