fix(SW-3081): Removed color option from hotel logos to avoid wrong colors
Approved-by: Matilda Landström
This commit is contained in:
@@ -1,18 +1,15 @@
|
||||
import { iconVariants } from '../variants'
|
||||
|
||||
import type { LogoProps } from '../icon'
|
||||
|
||||
export default function GrandHotelOsloLogoIcon({
|
||||
className,
|
||||
color,
|
||||
className = '',
|
||||
height = 30,
|
||||
width = 69,
|
||||
...props
|
||||
}: LogoProps) {
|
||||
const classNames = iconVariants({ className, color })
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
width="69"
|
||||
className={className}
|
||||
width={width}
|
||||
height={height}
|
||||
viewBox="0 0 69 30"
|
||||
fill="none"
|
||||
|
||||
Reference in New Issue
Block a user