summaryrefslogtreecommitdiff
path: root/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx
diff options
context:
space:
mode:
authorRyan Schanzenbacher <ryan@rschanz.org>2026-08-03 01:22:44 -0400
committerRyan Schanzenbacher <ryan@rschanz.org>2026-08-03 01:22:44 -0400
commit0c8fa3a2a270747f3dbb54fe8792f3f0aec997e3 (patch)
tree6f94ff3aeea2af859c7c166e01a8e73002017893 /users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx
Initial commit: combined darwin + guix-linux home-manager flake
Supersedes nix-dotfiles (darwin) and guix-dotfiles' ad-hoc nix-home-manager flake (linux). See README.md/MIGRATION.md.
Diffstat (limited to 'users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx')
-rwxr-xr-xusers/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx9
1 files changed, 9 insertions, 0 deletions
diff --git a/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx b/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx
new file mode 100755
index 0000000..b999e0b
--- /dev/null
+++ b/users/ryan/modules/simple-bar/simple-bar-source/lib/components/icons/library/trello.jsx
@@ -0,0 +1,9 @@
1import Icon from "../icon.jsx";
2
3export default function Trello(props) {
4 return (
5 <Icon {...props}>
6 <path d="M 20.5 2 L 4.5 2 C 3.121094 2 2 3.121094 2 4.5 L 2 20.5 C 2 21.878906 3.121094 23 4.5 23 L 20.5 23 C 21.878906 23 23 21.878906 23 20.5 L 23 4.5 C 23 3.121094 21.878906 2 20.5 2 Z M 10.5 18 C 10.5 18.550781 10.050781 19 9.5 19 L 6 19 C 5.449219 19 5 18.550781 5 18 L 5 6 C 5 5.449219 5.449219 5 6 5 L 9.5 5 C 10.050781 5 10.5 5.449219 10.5 6 Z M 20 12 C 20 12.550781 19.550781 13 19 13 L 15.5 13 C 14.949219 13 14.5 12.550781 14.5 12 L 14.5 6 C 14.5 5.449219 14.949219 5 15.5 5 L 19 5 C 19.550781 5 20 5.449219 20 6 Z M 20 12 " />
7 </Icon>
8 );
9}