12 lines
412 B
TypeScript
12 lines
412 B
TypeScript
import { FullScreenIcon } from './icons/FullScreenIcon';
|
|
|
|
export function Showreel() {
|
|
return (
|
|
<div className="aspect-[1552/616] [background:linear-gradient(rgba(0,0,0,0.2),rgba(0,0,0,0.2)),center_url(src/assets/motivation/Showreel.png)] flex justify-center items-center">
|
|
<button className="p-[22px] rounded-full border bg-[#14161F33]">
|
|
<FullScreenIcon />
|
|
</button>
|
|
</div>
|
|
);
|
|
}
|