import * as React from "react"; import { Row, Col } from "../../../ui"; import { ColWidth } from "../farmbot_os_settings"; import { t } from "../../../i18next_wrapper"; export interface FbosButtonRowProps { botOnline: boolean; label: string; description: string; buttonText: string; color: string; action: () => void; } export const FbosButtonRow = (props: FbosButtonRowProps) => { return

{t(props.description)}

; };