Files
Roo-Code/webview-ui/src/components/common/CaretIcon.tsx
2025-01-15 00:43:26 -05:00

16 lines
300 B
TypeScript

import React from 'react'
export const CaretIcon = () => (
<svg
width="10"
height="10"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
strokeWidth="2"
strokeLinecap="round"
strokeLinejoin="round"
>
<polyline points="6 9 12 15 18 9" />
</svg>
)