Updated type
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
import { ComponentProps } from "react"
|
import { SVGProps } from "react"
|
||||||
|
|
||||||
export default function DeveloperBadge({ size = 32, ...props }: { size?: number } & ComponentProps<SVGSVGElement>) {
|
export default function DeveloperBadge({ size = 32, ...props }: { size?: number } & SVGProps<SVGSVGElement>) {
|
||||||
return (
|
return (
|
||||||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height={size} width={size} {...props}>
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" height={size} width={size} {...props}>
|
||||||
<path
|
<path
|
||||||
|
|||||||
Reference in New Issue
Block a user