Files
fredy/ui/src/components/logo/Logo.jsx
Christian Kellner 89d239c360 New Listings view (#192)
* completing found listings

---------

Co-authored-by: Christian Kellner <Christian.Kellner1@ibm.com>
2025-09-25 15:03:47 +02:00

10 lines
313 B
JavaScript

import React from 'react';
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" />;
}