kanban-app/frontend/src/components/icons/ChevronRightIcon.tsx

18 lines
349 B
TypeScript
Raw Normal View History

2026-03-22 11:52:33 +00:00
const ChevronRightIcon = () => (
<svg
xmlns="http://www.w3.org/2000/svg"
width="16"
height="16"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline points="9 18 15 12 9 6"></polyline>
</svg>
);
export default ChevronRightIcon;