aboutsummaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pine.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pine.jsx')
-rwxr-xr-xusers/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pine.jsx13
1 files changed, 13 insertions, 0 deletions
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pine.jsx b/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pine.jsx
new file mode 100755
index 0000000..0e5e2fd
--- /dev/null
+++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/pine.jsx
@@ -0,0 +1,13 @@
1import Icon from "../icon.jsx";
2
3export default function Pine(props) {
4 return (
5 <Icon {...props}>
6 <path
7 fillRule="evenodd"
8 clipRule="evenodd"
9 d="M2.4 0A2.4 2.4 0 000 2.4v19.2A2.4 2.4 0 002.4 24h19.2a2.4 2.4 0 002.4-2.4V2.4A2.4 2.4 0 0021.6 0H2.4zm9.39 1.92l-3.32 6.6h.5l-1.19 2.33h.7l-1.35 2.56h.65l-1.21 2.27h.56L5.88 18.4h5.35v3.68h1.44V18.4h5.45l-1.31-2.72h.65l-1.21-2.27h.56l-1.35-2.56h.6l-1.19-2.33h.36l-3.44-6.6z"
10 />
11 </Icon>
12 );
13}