All files / src/assets/icons/RebrandedIcons LockUnlockedIcon.tsx

50% Statements 1/2
0% Branches 0/3
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            137x                                                    
type Props = {
  width?: number;
  height?: number;
  stroke?: string;
};
 
const LockUnlockedIcon = ({
  width = 14,
  height = 15,
  stroke = "#003182",
}: Props) => {
  return (
    <svg
      width={width}
      height={height}
      viewBox="0 0 14 15"
      fill="none"
      xmlns="http://www.w3.org/2000/svg"
    >
      <g id="Lock/unlocked">
        <path
          d="M7.00016 10.4167V9.25M7.00016 9.25C7.2994 9.25 7.54199 8.98883 7.54199 8.66667C7.54199 8.3445 7.2994 8.08333 7.00016 8.08333C6.70092 8.08333 6.45834 8.3445 6.45834 8.66667C6.45834 8.98883 6.70092 9.25 7.00016 9.25ZM3.74922 5.88921V5.75C3.74922 3.817 5.20472 2.25 7.00016 2.25C7.38013 2.25 7.74487 2.32018 8.08381 2.44916M3.74922 5.88921C4.14938 5.75 4.68703 5.75 5.65687 5.75H8.34345C9.31329 5.75 9.85095 5.75 10.2511 5.88921C10.2999 5.90619 10.3467 5.92525 10.392 5.94664C10.947 6.20882 11.3747 6.70924 11.5713 7.32648C11.7187 7.78941 11.6735 8.37316 11.5832 9.54066C11.5054 10.5455 11.4665 11.0479 11.2873 11.4422C11.0484 11.9679 10.6346 12.3778 10.1281 12.5905C9.74829 12.75 9.28001 12.75 8.34345 12.75H5.65687C4.72032 12.75 4.25204 12.75 3.87218 12.5905C3.3657 12.3778 2.95197 11.9679 2.71303 11.4422C2.53383 11.0479 2.49494 10.5455 2.41716 9.54066C2.32679 8.37316 2.28161 7.78941 2.42905 7.32648C2.62565 6.70924 3.05333 6.20882 3.60834 5.94664C3.65361 5.92525 3.70039 5.90619 3.74922 5.88921Z"
          stroke={stroke}
          strokeLinecap="round"
          strokeLinejoin="round"
        />
      </g>
    </svg>
  );
}
 
export default LockUnlockedIcon;