G
Ryan's Git Repos
nix-files
files
log
graph
refs
Ref
main
users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pins.jsx
main
· 295 B · 9 lines
raw
1
import
Icon from
"../icon.jsx"
;
2
3
export
default
function
Pins(props) {
4
return
(
5
<
Icon
{...props}>
6
<
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"
/>
7
</
Icon
>
8
);
9
}