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 | 3x 3x | import React from "react";
import Svg, { Circle, Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const ArrowUpIcon = ({
width = 32,
height = 32,
color = colors.white,
}: IconProps) => (
<Svg width={width} height={height} viewBox="0 0 32 32" fill="none">
<Circle cx="16" cy="16" r="14" fill={colors.slate97} />
<Path
d="M16 22V10"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
<Path
d="M11 15L16 10L21 15"
stroke={color}
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
|