-
+
diff --git a/packages/design-system/lib/components/Icons/Logos/DowntownCamper.tsx b/packages/design-system/lib/components/Icons/Logos/DowntownCamper.tsx
index 1f8cf5099..c55caefc6 100644
--- a/packages/design-system/lib/components/Icons/Logos/DowntownCamper.tsx
+++ b/packages/design-system/lib/components/Icons/Logos/DowntownCamper.tsx
@@ -1,17 +1,15 @@
import type { LogoProps } from '../icon'
-import { iconVariants } from '../variants'
export default function DowntownCamperIcon({
- className,
- color,
+ className = '',
height = 30,
+ width = 123,
...props
}: LogoProps) {
- const classNames = iconVariants({ className, color })
return (
default:
- return
+ return
}
}
diff --git a/packages/design-system/lib/components/Icons/icon.ts b/packages/design-system/lib/components/Icons/icon.ts
index f9739138a..6ab7ef344 100644
--- a/packages/design-system/lib/components/Icons/icon.ts
+++ b/packages/design-system/lib/components/Icons/icon.ts
@@ -15,8 +15,7 @@ export interface IllustrationProps
}
export interface LogoProps
- extends Omit, 'color'>,
- VariantProps {
+ extends Omit, 'color'> {
width?: string | number
height?: string | number
}