aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/chevron-right.jsx
blob: 028c8b1548592db58ad97acfb6ea2cdab6178f79 (plain)
1
2
3
4
5
6
7
8
9
import Icon from "../icon.jsx";

export default function ChevronRight(props) {
  return (
    <Icon {...props}>
      <path d="M12.75 12L4.5 3.75 8.25 0l12 12-12 12-3.75-3.75L12.75 12z" />
    </Icon>
  );
}