Skip to content

Commit

Permalink
Added width/height attribute
Browse files Browse the repository at this point in the history
  • Loading branch information
yamanidev committed May 5, 2024
1 parent 41bea72 commit b39497a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions src/components/icons/PalestineIcon.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,16 @@
function PalestineIcon({ className }: { className?: string }) {
function PalestineIcon({
width = "139",
height = "372",
className
}: {
width?: string;
height?: string;
className?: string;
}) {
return (
<svg
width="139"
height="372"
width={width}
height={height}
viewBox="0 0 139 372"
fill="#009736"
className={className}
Expand Down

0 comments on commit b39497a

Please sign in to comment.