feat(SW-2278): Added hotel listing to campaign page
Approved-by: Matilda Landström
This commit is contained in:
@@ -1,14 +1,19 @@
|
||||
import type { LogoProps } from '../icon'
|
||||
import { iconVariants } from '../variants'
|
||||
|
||||
export default function TheDockIcon({ className, color, ...props }: LogoProps) {
|
||||
export default function TheDockIcon({
|
||||
className,
|
||||
color,
|
||||
height = 30,
|
||||
...props
|
||||
}: LogoProps) {
|
||||
const classNames = iconVariants({ className, color })
|
||||
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
width="128"
|
||||
height="30"
|
||||
height={height}
|
||||
viewBox="0 0 128 30"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
|
||||
Reference in New Issue
Block a user