Files
graff.event/src/components/Showreel.tsx
T
2024-08-29 18:47:58 +05:00

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>
);
}