All files / packages/ui/src/icons More.tsx

100% Statements 2/2
100% Branches 2/2
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 22 23 24 25 26 27 28        3x 3x                                            
import Svg, { Path } from "react-native-svg";
 
import { IconProps } from "@repo/types/icons";
 
export const MoreIcon = ({ width = 60, height = 60 }: IconProps) => (
  <Svg width={width} height={height} viewBox="0 0 60 60" fill="none">
    <Path
      d="M30 55C43.8071 55 55 43.8071 55 30C55 16.1929 43.8071 5 30 5C16.1929 5 5 16.1929 5 30C5 43.8071 16.1929 55 30 55Z"
      stroke="#404653"
      strokeWidth="2"
      strokeLinecap="round"
      strokeLinejoin="round"
    />
    <Path
      d="M22.9343 28C24.0389 28 24.9343 28.8954 24.9343 30C24.9343 31.1046 24.0389 32 22.9343 32C21.8298 32 20.9343 31.1046 20.9343 30C20.9343 28.8954 21.8298 28 22.9343 28Z"
      fill="#404653"
    />
    <Path
      d="M30 28C31.1046 28 32 28.8954 32 30C32 31.1046 31.1046 32 30 32C28.8954 32 28 31.1046 28 30C28 28.8954 28.8954 28 30 28Z"
      fill="#404653"
    />
    <Path
      d="M37.0657 28C38.1702 28 39.0657 28.8954 39.0657 30C39.0657 31.1046 38.1702 32 37.0657 32C35.9611 32 35.0657 31.1046 35.0657 30C35.0657 28.8954 35.9611 28 37.0657 28Z"
      fill="#404653"
    />
  </Svg>
);