All files / src/assets/icons CheckRequirements.tsx

100% Statements 2/2
66.66% Branches 2/3
100% Functions 1/1
100% Lines 2/2

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 17 18 19 20 21            519x         1920x                  
interface IconProps {
    height?: number;
    width?: number;
    fill?: string;
  }
  
  const CheckRequirementsIcon = ({
    width = 16,
    height = 13,
    fill ="#C7C5CE",
  }: IconProps) => {
    return (
        <svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
        <path fillRule="evenodd" clipRule="evenodd" d="M10 17.5C14.1421 17.5 17.5 14.1421 17.5 10C17.5 5.85786 14.1421 2.5 10 2.5C5.85786 2.5 2.5 5.85786 2.5 10C2.5 14.1421 5.85786 17.5 10 17.5ZM9.6276 12.8841L13.7943 7.88411L12.8724 7.11589L9.12635 11.6112L7.09093 9.57574L6.2424 10.4243L8.7424 12.9243L9.20699 13.3888L9.6276 12.8841Z" fill={fill}/>
        </svg>
        
    );
  };
  
  export default CheckRequirementsIcon;