Files
web/components/TempDesignSystem/Form/SelectChevron/index.tsx
2024-04-16 09:24:31 +02:00

12 lines
274 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 height={24} width={24} />
</span>
)
}