Files
ontime/apps/client/src/common/components/view-logo/ViewLogo.tsx
T
2024-11-18 13:48:05 +01:00

12 lines
293 B
TypeScript

import { projectLogoPath } from '../../api/constants';
interface ViewLogoProps {
name: string;
className: string;
}
export default function ViewLogo(props: ViewLogoProps) {
const { name, className } = props;
return <img src={`${projectLogoPath}/${name}`} className={className} />;
}