18 lines
336 B
TypeScript
18 lines
336 B
TypeScript
import Image from "@/components/Image"
|
|
|
|
import type { IconProps } from "@/types/components/icon"
|
|
|
|
export default function CheckCircleIcon({
|
|
height = 20,
|
|
width = 20,
|
|
}: IconProps) {
|
|
return (
|
|
<Image
|
|
alt="Check Circle Icon"
|
|
height={height}
|
|
src="/_static/icons/check_circle.svg"
|
|
width={width}
|
|
/>
|
|
)
|
|
}
|