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

16 lines
306 B
TypeScript
Raw Normal View History

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}>
<div className={s.image} style={{ backgroundImage: `url(${src})` }} />
</div>
</div>
);
2022-05-17 06:44:09 +02:00
}