Skip to content

Commit

Permalink
logo
Browse files Browse the repository at this point in the history
  • Loading branch information
hathbanger committed Nov 14, 2024
1 parent aa7e93e commit 6aa24d4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions packages/lasereyes-react/lib/icons/lasereyes-logo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ const LaserEyesLogo = ({
color = 'green',
width = 135,
height,
...props
className = '',
}: {
color?: string
width?: number
height?: number
className?: string
}) => {
const aspectRatio = 135 / 56
const calculatedHeight = height || width! / aspectRatio
Expand All @@ -20,7 +21,7 @@ const LaserEyesLogo = ({
viewBox="0 0 135 56"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
className={className}
>
<rect
width={7.89036}
Expand Down Expand Up @@ -249,7 +250,7 @@ const LaserEyesLogo = ({
viewBox="0 0 135 56"
fill="none"
xmlns="http://www.w3.org/2000/svg"
{...props}
className={className}
>
<rect
width={7.89036}
Expand Down

0 comments on commit 6aa24d4

Please sign in to comment.