Switches out all the old icons to new ones, and moves them to the design system. The new icons are of three different types: Materialise Symbol, Nucleo, and Customized. Also adds further mapping between facilities/amenities and icons. Approved-by: Michael Zetterberg Approved-by: Erik Tiekstra
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import {
|
|
type IconProps,
|
|
MaterialIcon,
|
|
} from "@scandic-hotels/design-system/Icons"
|
|
|
|
import styles from "./chevron.module.css"
|
|
|
|
export default function SelectChevron(props: IconProps) {
|
|
return (
|
|
<span aria-hidden="true" className={styles.chevron}>
|
|
<MaterialIcon
|
|
icon="keyboard_arrow_down"
|
|
color={props.color ?? "Icon/Default"}
|
|
size={20}
|
|
/>
|
|
</span>
|
|
)
|
|
}
|