12 lines
289 B
TypeScript
12 lines
289 B
TypeScript
import { ChevronDownIcon } from "@/components/Icons"
|
|
|
|
import styles from "./chevron.module.css"
|
|
|
|
export default function SelectChevron() {
|
|
return (
|
|
<span aria-hidden="true" className={styles.chevron}>
|
|
<ChevronDownIcon color="grey80" width={20} height={20} />
|
|
</span>
|
|
)
|
|
}
|