mirror of
https://github.com/fleetdm/fleet
synced 2026-04-22 14:07:19 +00:00
22 lines
525 B
TypeScript
22 lines
525 B
TypeScript
|
|
import SoftwareIcon from "pages/SoftwarePage/components/icons/SoftwareIcon";
|
||
|
|
import React from "react";
|
||
|
|
|
||
|
|
const baseClass = "setup-software-process-cell";
|
||
|
|
|
||
|
|
interface ISetupSoftwareProcessCell {
|
||
|
|
name: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
const SetupSoftwareProcessCell = ({ name }: ISetupSoftwareProcessCell) => {
|
||
|
|
return (
|
||
|
|
<span className={baseClass}>
|
||
|
|
<SoftwareIcon name={name || ""} size="small" />
|
||
|
|
<div>
|
||
|
|
Install <b>{name || "Unknown software"}</b>
|
||
|
|
</div>
|
||
|
|
</span>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default SetupSoftwareProcessCell;
|