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

16 lines
306 B
TypeScript
Raw Normal View History

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