UNPKG

@hackoregon/component-library

Version:

Official repo for Hack Oregon React component library

17 lines (15 loc) 417 B
import React from "react"; import isClient from "../utils/isClient"; import logoStackStandard from "../../assets/civic-logo-stack_standard.svg"; var styles = { height: "60px", width: "auto" }; var LogoStandard = function LogoStandard() { return React.createElement("img", { alt: "Hack Oregon footer logo", src: isClient ? logoStackStandard : "", style: styles }); }; export default LogoStandard;