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 | 7x 3x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const CalendarNavLeftIcon = ({
width = 6,
height = 9,
color = colors.icon.subtle,
}: IconProps) => (
<Svg width={width} height={height} viewBox="0 0 6 9" fill="none">
<Path
d="M4.27 7.81L0.75 4.28L4.27 0.75"
stroke={color}
strokeWidth={1.5}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
|