All files / src/assets/icons SubtractMinusIcon.tsx

50% Statements 1/2
0% Branches 0/4
0% Functions 0/1
50% Lines 1/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 22 23 24 25 26 27 28 29 30 31 32 33              519x                                                  
type IconProps = {
  height?: number;
  width?: number;
  fill?: string;
  stroke?: string;
};
 
const SubtractMinusIcon = ({
  height = 4,
  width = 27,
  fill = "none",
  stroke = "#9C9AA3",
}: IconProps) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 25 25"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <path
        fillRule="evenodd"
        clipRule="evenodd"
        d="M7.53135 11.75H6.03115C5.69978 11.75 5.43115 12.0186 5.43115 12.35C5.43115 12.6814 5.69978 12.95 6.03115 12.95H7.53135V11.75ZM8.73135 12.95H18.6312C18.9625 12.95 19.2312 12.6814 19.2312 12.35C19.2312 12.0186 18.9625 11.75 18.6312 11.75H8.73135V12.95Z"
        fill={stroke}
      />
    </svg>
  );
};
 
export default SubtractMinusIcon;