We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db754ad commit 1efaf37Copy full SHA for 1efaf37
src/components/Logo.tsx
@@ -9,14 +9,9 @@ interface PhotoCircleProps {
9
sizeClasses?: string;
10
}
11
12
-export default function Logo({
13
- lightSrc,
14
- darkSrc,
15
- alt,
16
- sizeClasses = "w-72 h-72 xl:w-96 xl:h-96",
17
-}: PhotoCircleProps) {
+export default function Logo({ lightSrc, darkSrc, alt }: PhotoCircleProps) {
18
return (
19
- <div className={`relative ${sizeClasses}`}>
+ <div className={`xl:w-128 xl:h-128 relative h-96 w-96`}>
20
<div className="h-full w-full">
21
<img
22
src={lightSrc}
0 commit comments