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

17 lines
340 B
TypeScript
Raw Normal View History

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