chore: add icons

This commit is contained in:
Arvid Norlin
2024-05-20 13:57:24 +02:00
parent 4c4841a923
commit fffee84989
23 changed files with 456 additions and 84 deletions

View File

@@ -0,0 +1,17 @@
import Image from "@/components/Image"
import type { IconProps } from "@/types/components/icon"
export default function ChevronDownIcon({
height = 20,
width = 20,
}: IconProps) {
return (
<Image
alt="Check Circle Icon"
height={height}
src="/_static/icons/check_circle.svg"
width={width}
/>
)
}