Some checks failed
farmcontrol/farmcontrol-server/pipeline/head There was a failure building this commit
10 lines
267 B
JavaScript
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;
|