import React from "react"; import Svg from "../../../components/Svg/Svg"; import { SvgProps } from "../../../components/Svg/types"; interface LogoProps extends SvgProps { isDark: boolean; } const Logo: React.FC = ({ isDark, ...props }) => { const textColor = isDark ? "#FFFFFF" : "#000000"; return ( {/* "images" in the path refers to the images folder in the frontend - won't load in storybook*/} {/* comment this out to test images in storybook - DONT include in published version */} {/**/} {/**/} ); }; export default React.memo(Logo, (prev, next) => prev.isDark === next.isDark);