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 | 6x 72x | import Svg, { Path } from "react-native-svg";
import { IconProps } from "@repo/types/icons";
import { colors } from "../themes";
export const ChevronDownIcon = ({
width = 24,
height = 24,
color = colors.icon.default,
}: IconProps) => (
<Svg
width={width}
height={height}
viewBox={`0 0 ${width} ${height}`}
fill="none"
>
<Path
d="m1.0021 0c-.890901 0-1.337067 1.07714-.707102 1.70711l5.585782 5.58578c.39053.39053 1.02369.39053 1.41422 0l5.5858-5.58578c.63-.62997.1838-1.70711-.7071-1.70711z"
fill={color}
/>
</Svg>
);
|