mirror of
https://github.com/fleetdm/fleet
synced 2026-04-30 18:07:56 +00:00
* Style all settings side panels * Add builtin label icons * Update tests aligning jest userStub and adminUserStub * Update tests adding cypress checks for user teams/roles
25 lines
511 B
TypeScript
25 lines
511 B
TypeScript
import React from "react";
|
|
|
|
interface ITextCellProps {
|
|
value: string | number | boolean;
|
|
formatter?: (val: any) => string;
|
|
greyed?: string;
|
|
}
|
|
|
|
const TextCell = (props: ITextCellProps): JSX.Element => {
|
|
const {
|
|
value,
|
|
formatter = (val) => val, // identity function if no formatter is provided
|
|
greyed,
|
|
} = props;
|
|
|
|
let val = value;
|
|
|
|
if (typeof value === "boolean") {
|
|
val = value.toString();
|
|
}
|
|
|
|
return <span className={greyed}>{formatter(val)}</span>;
|
|
};
|
|
|
|
export default TextCell;
|