2
0
Files
bot/ee/apps/landing-page/assets/icons/ArrowRight.tsx

19 lines
445 B
TypeScript
Raw Normal View History

2022-03-17 14:37:00 +01:00
import Icon, { IconProps } from '@chakra-ui/icon'
import React from 'react'
export const ArrowRight = (props: IconProps) => (
<Icon
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
{...props}
>
<line x1="5" y1="12" x2="19" y2="12"></line>
<polyline points="12 5 19 12 12 19"></polyline>
</Icon>
)