diff --git a/code/ui/components/src/components/brand/StorybookLogo.tsx b/code/ui/components/src/components/brand/StorybookLogo.tsx index c83453436e20..aafcc0aa1149 100644 --- a/code/ui/components/src/components/brand/StorybookLogo.tsx +++ b/code/ui/components/src/components/brand/StorybookLogo.tsx @@ -1,8 +1,8 @@ import React from 'react'; -export interface StorybookLogoProps extends React.SVGAttributes { +type StorybookLogoProps = { alt: string; -} +} & React.SVGAttributes; export const StorybookLogo = ({ alt, ...props }: StorybookLogoProps) => (