mirror of
https://github.com/urosran/cally.git
synced 2025-11-26 00:24:53 +00:00
20 lines
424 B
TypeScript
20 lines
424 B
TypeScript
import * as React from "react"
|
|
import Svg, { SvgProps, Path } from "react-native-svg"
|
|
const ArrowRightIcon = (props: SvgProps) => (
|
|
<Svg
|
|
width={9}
|
|
height={15}
|
|
viewBox="0 0 9 15"
|
|
fill="none"
|
|
{...props}
|
|
>
|
|
<Path
|
|
stroke="#ACACAC"
|
|
strokeLinecap="round"
|
|
strokeWidth={2}
|
|
d="M1.272 1.803 7.16 7.69a.16.16 0 0 1 0 .226l-5.887 5.887"
|
|
/>
|
|
</Svg>
|
|
)
|
|
export default ArrowRightIcon
|