Skip to content

Commit

Permalink
Remove text class name
Browse files Browse the repository at this point in the history
  • Loading branch information
zlwaterfield committed Mar 25, 2024
1 parent 9ff1fa5 commit 6e918b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/lib/components/CustomerLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ interface LogoProps {
}

const Logo = ({ src, alt, className = '' }: LogoProps): JSX.Element => (
<img className={`bg-transparent text-text-3000 w-full px-3 py-3 h-10 ${className}`} src={src} alt={alt} />
<img className={`bg-transparent w-full px-3 py-3 h-10 ${className}`} src={src} alt={alt} />
)

export const CustomerLogo = ({ image, alt, className = '' }: CustomerProps): JSX.Element => {
Expand Down

0 comments on commit 6e918b9

Please sign in to comment.