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

export default function Opencode(props) {
  return (
    <Icon {...props}>
      <path d="M16 6H8v12h8V6zm4 16H4V2h16v20z" />
    </Icon>
  );
}