Merged in feat/SW-1065-meetings-page (pull request #1287)
Feat(SW-1065): Meetings hotel subpage Approved-by: Erik Tiekstra
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
import { iconVariants } from "./variants"
|
||||
|
||||
import type { IconProps } from "@/types/components/icon"
|
||||
|
||||
export default function MeasureIcon({ className, color, ...props }: IconProps) {
|
||||
const classNames = iconVariants({ className, color })
|
||||
return (
|
||||
<svg
|
||||
className={classNames}
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
width="16"
|
||||
height="17"
|
||||
viewBox="0 0 16 17"
|
||||
fill="none"
|
||||
{...props}
|
||||
>
|
||||
<path
|
||||
d="M2.66634 12.2502C2.29967 12.2502 1.98579 12.1197 1.72467 11.8586C1.46356 11.5975 1.33301 11.2836 1.33301 10.9169V5.58358C1.33301 5.21691 1.46356 4.90302 1.72467 4.64191C1.98579 4.3808 2.29967 4.25024 2.66634 4.25024H13.333C13.6997 4.25024 14.0136 4.3808 14.2747 4.64191C14.5358 4.90302 14.6663 5.21691 14.6663 5.58358V10.9169C14.6663 11.2836 14.5358 11.5975 14.2747 11.8586C14.0136 12.1197 13.6997 12.2502 13.333 12.2502H2.66634ZM2.66634 10.9169H13.333V5.58358H11.333V8.25024H9.99967V5.58358H8.66634V8.25024H7.33301V5.58358H5.99967V8.25024H4.66634V5.58358H2.66634V10.9169Z"
|
||||
fill="#787472"
|
||||
/>
|
||||
</svg>
|
||||
)
|
||||
}
|
||||
@@ -125,6 +125,7 @@ export { default as ScandicLogoIcon } from "./Logos/ScandicLogo"
|
||||
export { default as LuggageIcon } from "./Luggage"
|
||||
export { default as MagicWandIcon } from "./MagicWand"
|
||||
export { default as MapIcon } from "./Map"
|
||||
export { default as MeasureIcon } from "./Measure"
|
||||
export { default as MicrowaveIcon } from "./Microwave"
|
||||
export { default as MinusIcon } from "./Minus"
|
||||
export { default as MirrorIcon } from "./Mirror"
|
||||
|
||||
Reference in New Issue
Block a user