/
githubmirror
/
Prompt-Engineering-Guide
Обзор
Документация
Войти
/
githubmirror
/
Prompt-Engineering-Guide
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
components/check.tsx
19 строк
494 B
Elvis Saravia
Fix TypeScript type conflicts in all components
28 дек 2025, 20:18
28 дек 2025, 20:18
bdf4388
Код
Авторство
О чём код?
import type { ReactElement, SVGAttributes } from 'react' export function CheckIcon(props: SVGAttributes<SVGElement>): ReactElement { return ( <svg viewBox="0 0 20 20" width="1em" height="1em" fill="currentColor" {...(props as any)} > <path fillRule="evenodd" d="M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z" clipRule="evenodd" /> </svg> ) }