Skip to content

Commit

Permalink
type: fix Logo/LogoRect type error.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Sep 22, 2023
1 parent c0e618d commit ab03817
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
4 changes: 1 addition & 3 deletions core/src/logo/Logo.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { FC } from 'react';

export default function Logo(props: FC<React.SVGProps<SVGSVGElement>>) {
export default function Logo(props: React.SVGProps<SVGSVGElement>) {
return (
<svg width="93" height="35" viewBox="0 0 249 95" {...props}>
<path
Expand Down
4 changes: 1 addition & 3 deletions core/src/logo/LogoRect.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import { FC } from 'react';

export default function LogoRect(props: FC<React.SVGProps<SVGSVGElement>>) {
export default function LogoRect(props: React.SVGProps<SVGSVGElement>) {
return (
<svg width="28" height="28" viewBox="0 0 92 92" {...props}>
<path
Expand Down

0 comments on commit ab03817

Please sign in to comment.