2025-12-11 10:40:55 +01:00
|
|
|
/*
|
2026-01-12 15:00:36 +01:00
|
|
|
* Copyright (c) 2026 by Christian Kellner.
|
2025-12-11 10:40:55 +01:00
|
|
|
* Licensed under Apache-2.0 with Commons Clause and Attribution/Naming Clause
|
|
|
|
|
*/
|
|
|
|
|
|
2021-01-21 16:09:23 +01:00
|
|
|
import logo from '../../assets/logo.png';
|
|
|
|
|
import logoWhite from '../../assets/logo_white.png';
|
|
|
|
|
|
|
|
|
|
import './Logo.less';
|
|
|
|
|
|
|
|
|
|
export default function Logo({ width = 350, white = false } = {}) {
|
2025-09-25 15:03:47 +02:00
|
|
|
return <img src={white ? logoWhite : logo} width={width} className="logo" alt="Fredy Logo" />;
|
2021-01-21 16:09:23 +01:00
|
|
|
}
|