ShieldIcon.tsx 505 B

123456789101112131415161718192021
  1. import React from 'react';
  2. const ShieldIcon: React.FC = () => (
  3. <svg
  4. xmlns="http://www.w3.org/2000/svg"
  5. width="32"
  6. height="32"
  7. viewBox="0 0 24 24"
  8. fill="none"
  9. stroke="currentColor"
  10. strokeWidth="1.5"
  11. strokeLinecap="round"
  12. strokeLinejoin="round"
  13. className="opacity-80"
  14. aria-hidden="true"
  15. >
  16. <path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path>
  17. </svg>
  18. );
  19. export default ShieldIcon;