Feat/SW-338 design filters and sorting on select hotel * feat(SW-338): design hotel sort dropdown * Translations * feat(SW-338): style filters * Bold * Import type * Translations * Rename and add translation * Rename translation Approved-by: Bianca Widstam
14 lines
374 B
TypeScript
14 lines
374 B
TypeScript
import { ChevronDownIcon } from "@/components/Icons"
|
|
|
|
import styles from "./chevron.module.css"
|
|
|
|
import type { IconProps } from "@/types/components/icon"
|
|
|
|
export default function SelectChevron(props: IconProps) {
|
|
return (
|
|
<span aria-hidden="true" className={styles.chevron}>
|
|
<ChevronDownIcon color="grey80" width={20} height={20} {...props} />
|
|
</span>
|
|
)
|
|
}
|