mirror of
https://github.com/orangecoding/fredy.git
synced 2026-06-16 12:31:07 +00:00
14 lines
417 B
JavaScript
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" />;
|
|
}
|