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

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