import { InferComponentProps } from '../../types.js'
import Carrot from './carrot-left.js'

const CarrotRight = (props: InferComponentProps<typeof Carrot>) => (
  <Carrot data-testid="icon:carrot-right" style={{ transform: 'rotate(0.5turn)' }} {...props} />
)
export default CarrotRight
