All files / app/components/icons movement-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 15                             
import { Box, BoxProps } from '@stacks/ui';
import * as React from 'react';
 
export const MovementArrow = ({ ...props }: BoxProps) => (
  <Box {...props}>
    <svg width={16} height={16} viewBox="0 0 16 16" fill="none">
      <path
        d="M5.883 9.75h4.234a.5.5 0 00.429-.757L8.429 5.465a.5.5 0 00-.858 0L5.454 8.993a.5.5 0 00.43.757z"
        fill="#00A73E"
      />
      <circle opacity={0.24} cx={8} cy={8} r={7} stroke="#00A73E" strokeWidth={2} />
    </svg>
  </Box>
);