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

17 lines
340 B
TypeScript
Raw Normal View History

import { Image } from 'antd';
2022-05-16 21:44:09 -07:00
import s from './Logo.module.scss';
2022-05-17 15:28:56 -07: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-17 15:28:56 -07:00
<div className={s.container}>
<Image src={src} alt="Logo" className={s.image} rootClassName={s.image} />
2022-05-17 15:28:56 -07:00
</div>
</div>
);
2022-05-16 21:44:09 -07:00
}