Files
web/components/TempDesignSystem/Form/SelectChevron/index.tsx

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>
)
}