mirror of
https://github.com/owncast/owncast.git
synced 2024-12-20 08:18:07 +03:00
15 lines
306 B
TypeScript
15 lines
306 B
TypeScript
import s from './Logo.module.scss';
|
|
|
|
interface Props {
|
|
src: string;
|
|
}
|
|
|
|
export default function Logo({ src }: Props) {
|
|
return (
|
|
<div className={s.logo}>
|
|
<div className={s.container}>
|
|
<div className={s.image} style={{ backgroundImage: `url(${src})` }} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|