import { twMerge } from 'tailwind-merge'
type Props = {
source: {
light: string
dark: string
}
className?: string
width: number
height: number
}
const ThemeVideo = (props: Props) => {
const { source, className, width, height } = props
return (
<>
>
)
}
export default ThemeVideo