Skip to content

Commit

Permalink
Fix failing type compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
JReinhold committed Jan 24, 2024
1 parent a32225c commit d21c368
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions code/ui/components/src/components/brand/StorybookLogo.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import React from 'react';

export interface StorybookLogoProps extends React.SVGAttributes<SVGSVGElement> {
type StorybookLogoProps = {
alt: string;
}
} & React.SVGAttributes<SVGSVGElement>;

export const StorybookLogo = ({ alt, ...props }: StorybookLogoProps) => (
<svg width="200px" height="40px" viewBox="0 0 200 40" {...props} role="img">
Expand Down

0 comments on commit d21c368

Please sign in to comment.