mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2025-04-19 08:21:22 +08:00
24 lines
649 B
TypeScript
24 lines
649 B
TypeScript
import * as React from "react";
|
|
import { IconProps } from "../../interfaces/Interfaces";
|
|
import { Svg, Path } from "react-native-svg";
|
|
import { colors } from "../../styles";
|
|
|
|
export default function CaretUpIcon(props: IconProps) {
|
|
return (
|
|
<>
|
|
<Svg
|
|
height={props.size + "px"}
|
|
width={props.size + "px"}
|
|
viewBox="0 0 24 24"
|
|
stroke-width="2"
|
|
stroke={colors.icon_color}
|
|
fill="none"
|
|
stroke-linecap="round"
|
|
stroke-linejoin="round"
|
|
>
|
|
<Path stroke="none" d="M0 0h24v24H0z" fill="none"></Path>
|
|
<Path d="M18 14l-6 -6l-6 6h12"></Path>
|
|
</Svg>
|
|
</>
|
|
);
|
|
}
|