Skip to content

Commit ab03817

Browse files
committed
type: fix Logo/LogoRect type error.
1 parent c0e618d commit ab03817

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

core/src/logo/Logo.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import { FC } from 'react';
2-
3-
export default function Logo(props: FC<React.SVGProps<SVGSVGElement>>) {
1+
export default function Logo(props: React.SVGProps<SVGSVGElement>) {
42
return (
53
<svg width="93" height="35" viewBox="0 0 249 95" {...props}>
64
<path

core/src/logo/LogoRect.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
import { FC } from 'react';
2-
3-
export default function LogoRect(props: FC<React.SVGProps<SVGSVGElement>>) {
1+
export default function LogoRect(props: React.SVGProps<SVGSVGElement>) {
42
return (
53
<svg width="28" height="28" viewBox="0 0 92 92" {...props}>
64
<path

0 commit comments

Comments
 (0)