Files
flyer-crawler.projectium.com/components/icons/CheckIcon.tsx
Torben Sorensen 48b7d7ce7b
All checks were successful
Deploy to Web Server flyer-crawler.projectium.com / deploy (push) Successful in 20s
login and db work
2025-11-11 17:06:01 -08:00

5 lines
322 B
TypeScript

import React from 'react';
export const CheckIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" strokeWidth={1.5} stroke="currentColor" {...props}><path strokeLinecap="round" strokeLinejoin="round" d="m4.5 12.75 6 6 9-13.5" /></svg>
);