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 | 5x 7x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const ChevronLeftIcon = ({
width = 24,
height = 24,
color = colors.icon.default,
}: IconProps) => (
<Svg width={width} height={height} viewBox="0 0 24 24" fill="none">
<Path
d="M9.57 5.93L3.5 12l6.07 6.07M20.5 12H3.67"
stroke={color}
strokeWidth={2}
strokeMiterlimit={10}
strokeLinecap="round"
strokeLinejoin="round"
/>
</Svg>
);
|