gab-social/app/javascript/gabsocial/assets/angle_right_icon.js

24 lines
785 B
JavaScript
Raw Normal View History

2020-02-19 23:57:07 +00:00
const AngleRightIcon = ({
className = '',
2020-04-23 07:13:29 +01:00
size = '16px',
2020-02-19 23:57:07 +00:00
title = '',
}) => (
<svg
className={className}
version='1.1'
xmlns='http://www.w3.org/2000/svg'
x='0px'
y='0px'
2020-04-23 07:13:29 +01:00
width={size}
height={size}
viewBox='0 0 64 64'
2020-02-19 23:57:07 +00:00
xmlSpace='preserve'
aria-label={title}
>
2020-03-14 17:31:29 +00:00
<g>
<path d='M 49.78 29.5 L 21.3 1 C 20.64 0.36 19.76 0 18.82 0 C 17.88 0 17 0.36 16.35 1 L 14.25 3.12 C 12.88 4.48 12.88 6.71 14.25 8 L 38.16 31.99 L 14.22 55.93 C 13.56 56.59 13.2 57.47 13.2 58.41 C 13.2 59.34 13.56 60.22 14.22 60.88 L 16.32 62.98 C 16.98 63.64 17.86 64 18.8 64 C 19.73 64 20.61 63.64 21.27 62.98 L 49.78 34.47 C 50.44 33.81 50.8 32.93 50.8 31.99 C 50.8 31 50.44 30.16 49.78 29.5 Z M 49.78 29.5' />
</g>
</svg>
2020-02-19 23:57:07 +00:00
)
export default AngleRightIcon