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

export default function Pins(props) {
  return (
    <Icon {...props}>
      <path d="M11 17h2v5l-2 2v-7zm3.571-12c0-2.903 2.36-3.089 2.429-5h-10c.068 1.911 2.429 2.097 2.429 5 0 3.771-3.429 3.291-3.429 10h12c0-6.709-3.429-6.229-3.429-10z" />
    </Icon>
  );
}