Skip to content

Commit

Permalink
Made width/height attributes optional
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanidev committed May 5, 2024
1 parent a749d4d commit 41bea72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/icons/InstagramIcon.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ function InstagramIcon({
height = "24",
className
}: {
width: string;
height: string;
width?: string;
height?: string;
className?: string;
}) {
return (
Expand Down

0 comments on commit 41bea72

Please sign in to comment.