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

export default function Notes(props) {
  return (
    <Icon {...props}>
      <path d="M2 0v24h20v-24h-20zm18 22h-16v-15h16v15zm-3-4h-10v-1h10v1zm0-3h-10v-1h10v1zm0-3h-10v-1h10v1z" />
    </Icon>
  );
}