import React, { FC } from 'react'; import cn from 'classnames'; import styles from './OwncastLogo.module.scss'; export type LogoProps = { variant?: 'simple' | 'contrast'; className?: string; }; export const OwncastLogo: FC = ({ variant = 'simple', className = '' }) => { const rootClassName = cn(styles.root, { [styles.simple]: variant === 'simple', [styles.contrast]: variant === 'contrast', }); return (
{' '}
); };