farmcontrol-server/src/electron/FarmControlLogo.jsx
Tom Butcher 5db74f2c5c
Some checks failed
farmcontrol/farmcontrol-server/pipeline/head There was a failure building this commit
New version of farmcontrol-server. Includes electron UI, connects only via WS and authenticates using OTP and then auth code.
2025-09-05 23:33:21 +01:00

10 lines
267 B
JavaScript

import React from "react";
import Icon from "@ant-design/icons";
import { ReactComponent as CustomIconSvg } from "./assets/farmcontrollogo.svg";
const FarmControlLogo = (props) => (
<Icon component={CustomIconSvg} {...props} />
);
export default FarmControlLogo;