react-code-dataset
/
next.js
/packages
/next
/src
/next-devtools
/dev-overlay
/icons
/right-arrow.tsx
| export function RightArrow({ | |
| title, | |
| className, | |
| }: { | |
| title?: string | |
| className?: string | |
| }) { | |
| return ( | |
| <svg | |
| width="16" | |
| height="16" | |
| viewBox="0 0 16 16" | |
| fill="none" | |
| xmlns="http://www.w3.org/2000/svg" | |
| className={className} | |
| aria-label={title} | |
| > | |
| <path | |
| fillRule="evenodd" | |
| clipRule="evenodd" | |
| d="M6.75011 3.93945L7.28044 4.46978L10.1037 7.29301C10.4942 7.68353 10.4942 8.3167 10.1037 8.70722L7.28044 11.5304L6.75011 12.0608L5.68945 11.0001L6.21978 10.4698L8.68945 8.00011L6.21978 5.53044L5.68945 5.00011L6.75011 3.93945Z" | |
| fill="currentColor" | |
| /> | |
| </svg> | |
| ) | |
| } | |