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

export default function Vim(props) {
  return (
    <Icon {...props}>
      <path d="M1 1L0 2v2h1v19h4L24 4V2l-1-1h-8l-1 1v2h1l-6 7V4h1V2L9 1H1z" />
    </Icon>
  );
}