owncast/web/components/ui/Logo/Logo.tsx

17 lines
340 B
TypeScript
Raw Normal View History

import { Image } from 'antd';
2022-05-17 06:44:09 +02:00
import s from './Logo.module.scss';
2022-05-18 00:28:56 +02:00
interface Props {
src: string;
}
export default function Logo({ src }: Props) {
return (
2022-07-03 12:34:55 +02:00
<div className={s.root}>
2022-05-18 00:28:56 +02:00
<div className={s.container}>
<Image src={src} alt="Logo" className={s.image} rootClassName={s.image} />
2022-05-18 00:28:56 +02:00
</div>
</div>
);
2022-05-17 06:44:09 +02:00
}