aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/up-arrow.jsx
blob: f17cb938c8c1f994b25259638744229c6b4fbb96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import Icon from "../icon.jsx";

export default function UpArrow(props) {
  return (
    <Icon {...props}>
      <path
        fill="var(--green)"
        d="M0 16.67l2.829 2.83 9.175-9.339 9.167 9.339 2.829-2.83-11.996-12.17z"
      />
    </Icon>
  );
}