All files / app/components/icons update-arrow.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                           
import { Box, BoxProps } from '@stacks/ui';
import React from 'react';
 
export const UpdateArrowIcon: React.FC<BoxProps> = props => (
  <Box {...props}>
    <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
      <path
        d="M8 16C12.3866 16 16 12.3807 16 7.99617C16 3.61167 12.3789 0 8 0C3.6134 0 0 3.61167 0 7.99617C0 12.3807 3.6134 16 8 16ZM8 12.0823C7.53301 12.0823 7.18086 11.7532 7.18086 11.3018V7.72836L7.26507 6.12912L6.62201 6.96318L5.77225 7.8814C5.64211 8.02678 5.44306 8.1186 5.22871 8.1186C4.80766 8.1186 4.50144 7.82018 4.50144 7.40698C4.50144 7.19273 4.56268 7.02439 4.72344 6.8637L7.34163 4.17025C7.54067 3.956 7.74737 3.86418 8 3.86418C8.26794 3.86418 8.47464 3.96365 8.66603 4.17025L11.2842 6.8637C11.4373 7.02439 11.5062 7.19273 11.5062 7.40698C11.5062 7.82018 11.2 8.1186 10.7713 8.1186C10.5646 8.1186 10.3656 8.03443 10.2354 7.8814L9.3933 6.98613L8.73493 6.12147L8.82679 7.72836V11.3018C8.82679 11.7532 8.47464 12.0823 8 12.0823Z"
        fill="currentColor"
      />
    </svg>
  </Box>
);