Skip to content

Commit

Permalink
fix: defines type to props
Browse files Browse the repository at this point in the history
Signed-off-by: Sanders Gutiérrez <[email protected]>
  • Loading branch information
untalsanders committed Jun 28, 2024
1 parent e34e477 commit d0dc97f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/LogoSquareSVG.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
'use strict'

export default function LogoSquareSVG(props) {
import { JSX, SVGProps } from "react"

export default function LogoSquareSVG(props: JSX.IntrinsicAttributes & SVGProps<SVGSVGElement>) {
return (
<svg xmlns="http://www.w3.org/2000/svg" width={35} height={35} viewBox="0 0 100 100" {...props}>
<path
Expand Down

0 comments on commit d0dc97f

Please sign in to comment.