aboutsummaryrefslogtreecommitdiff
path: root/icons-react/icons-js/chevron-right.js
blob: 877023e82e8df53ab73ed394941bea8caed8c8f8 (plain)
1
2
3
4
5
import * as React from "react";

const IconChevronRight = (size = 24, color = "currentColor", stroke = 2, ...props) => <svg className="icon icon-tabler icon-tabler-chevron-right" width={size} height={size} viewBox="0 0 24 24" strokeWidth={stroke} stroke={color} fill="none" strokeLinecap="round" strokeLinejoin="round" {...props}><path stroke="none" d="M0 0h24v24H0z" fill="none" /><polyline points="9 6 15 12 9 18" /></svg>;

export default IconChevronRight;