All files / app/components/icons success-checkmark.tsx

0% Statements 0/5
100% Branches 0/0
0% Functions 0/1
0% Lines 0/4

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16                               
import { color } from '@stacks/ui';
import React from 'react';
 
export const SuccessCheckmark: React.FC = () => (
  <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="none" viewBox="0 0 20 20">
    <circle cx="10" cy="10" r="8" fill="#00A73E" />
    <path
      stroke={color('bg')}
      strokeLinecap="round"
      strokeLinejoin="round"
      strokeWidth="1.5"
      d="M7.667 10.667l2 1.333 2.666-4"
    />
  </svg>
);