Files
fredy/ui/src/components/logo/Logo.jsx
2026-02-16 13:50:50 +01:00

14 lines
417 B
JavaScript

/*
* Copyright (c) 2026 by Christian Kellner.
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
*/
import logo from '../../assets/logo.png';
import logoWhite from '../../assets/logo_white.png';
import './Logo.less';
export default function Logo({ width = 350, white = false } = {}) {
return <img src={white ? logoWhite : logo} width={width} className="logo" alt="Fredy Logo" />;
}