Sha256: 6732ee5b82fb27aaf25fd357400ea204ca44cd8338deb48e1cca0e3183875a79
Contents?: true
Size: 1.43 KB
Versions: 107
Compression:
Stored size: 1.43 KB
Contents
import React from "react"; import classnames from "classnames"; import { buildAriaProps, buildDataProps, buildHtmlProps, } from "../../utilities/props"; import { globalProps } from "../../utilities/globalProps"; type TableCellPropTypes = { aria?: { [key: string]: string }; children: React.ReactNode[] | React.ReactNode; className: string; data?: { [key: string]: string }; htmlOptions?: { [key: string]: string | number | boolean | (() => void) }; id?: string; tag?: "table" | "div"; text?: string }; const TableCell = (props: TableCellPropTypes) => { const { aria = {}, children, className, data = {}, htmlOptions = {}, id, tag = "table", text, } = props; const ariaProps = buildAriaProps(aria); const dataProps = buildDataProps(data); const htmlProps = buildHtmlProps(htmlOptions); const classes = classnames("pb_table_td", globalProps(props), className); const isTableTag = tag === "table"; return ( <> {isTableTag ? ( <td {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} > {text || children} </td> ) : ( <div {...ariaProps} {...dataProps} {...htmlProps} className={classes} id={id} > {text || children} </div> )} </> ); }; export default TableCell;
Version data entries
107 entries across 107 versions & 1 rubygems