{"version":3,"file":"index.mjs","names":[],"sources":["../src/row.tsx"],"sourcesContent":["import * as React from 'react';\n\nexport type RowProps = Readonly<\n  React.ComponentPropsWithoutRef<'table'> & {\n    children: React.ReactNode;\n  }\n>;\n\nexport const Row = React.forwardRef<HTMLTableElement, RowProps>(\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 style={{ width: '100%' }}>\n          <tr style={{ width: '100%' }}>{children}</tr>\n        </tbody>\n      </table>\n    );\n  },\n);\n\nRow.displayName = 'Row';\n"],"mappings":";;;;AAQA,MAAa,MAAM,MAAM,YACtB,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;GAAM,OAAO,EAAE,OAAO,QAAQ;aAC7B,oBAAC;IAAG,OAAO,EAAE,OAAO,QAAQ;IAAG;KAAc;IACvC;GACF;EAGb;AAED,IAAI,cAAc"}