Skip to content

Commit

Permalink
Update other icon sets
Browse files Browse the repository at this point in the history
  • Loading branch information
MrGVSV committed Apr 21, 2024
1 parent 651df61 commit 439c5c2
Show file tree
Hide file tree
Showing 26 changed files with 45,203 additions and 17 deletions.
10,008 changes: 10,008 additions & 0 deletions packages/lib/src/icons/bs_icons.rs

Large diffs are not rendered by default.

2,772 changes: 2,772 additions & 0 deletions packages/lib/src/icons/fa_brands_icons.rs

Large diffs are not rendered by default.

972 changes: 972 additions & 0 deletions packages/lib/src/icons/fa_regular_icons.rs

Large diffs are not rendered by default.

8,322 changes: 8,322 additions & 0 deletions packages/lib/src/icons/fa_solid_icons.rs

Large diffs are not rendered by default.

1,722 changes: 1,722 additions & 0 deletions packages/lib/src/icons/fi_icons.rs

Large diffs are not rendered by default.

1,596 changes: 1,596 additions & 0 deletions packages/lib/src/icons/go_icons.rs

Large diffs are not rendered by default.

1,380 changes: 1,380 additions & 0 deletions packages/lib/src/icons/hi_outline_icons.rs

Large diffs are not rendered by default.

1,380 changes: 1,380 additions & 0 deletions packages/lib/src/icons/hi_solid_icons.rs

Large diffs are not rendered by default.

8,002 changes: 7,997 additions & 5 deletions packages/lib/src/icons/io_icons.rs

Large diffs are not rendered by default.

2,058 changes: 2,058 additions & 0 deletions packages/lib/src/icons/md_action_icons.rs

Large diffs are not rendered by default.

36 changes: 36 additions & 0 deletions packages/lib/src/icons/md_alert_icons.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ impl IconShape for MdAddAlert {
fn fill_and_stroke<'a>(&self, user_color: &'a str) -> (&'a str, &'a str, &'a str) {
(user_color, "none", "0")
}
fn stroke_linecap(&self) -> &str {
"butt"
}
fn stroke_linejoin(&self) -> &str {
"miter"
}
fn child_elements(&self) -> Element {
rsx! {
path {
Expand All @@ -34,6 +40,12 @@ impl IconShape for MdAutoDelete {
fn fill_and_stroke<'a>(&self, user_color: &'a str) -> (&'a str, &'a str, &'a str) {
(user_color, "none", "0")
}
fn stroke_linecap(&self) -> &str {
"butt"
}
fn stroke_linejoin(&self) -> &str {
"miter"
}
fn child_elements(&self) -> Element {
rsx! {
polygon {
Expand Down Expand Up @@ -61,6 +73,12 @@ impl IconShape for MdError {
fn fill_and_stroke<'a>(&self, user_color: &'a str) -> (&'a str, &'a str, &'a str) {
(user_color, "none", "0")
}
fn stroke_linecap(&self) -> &str {
"butt"
}
fn stroke_linejoin(&self) -> &str {
"miter"
}
fn child_elements(&self) -> Element {
rsx! {
path {
Expand All @@ -82,6 +100,12 @@ impl IconShape for MdErrorOutline {
fn fill_and_stroke<'a>(&self, user_color: &'a str) -> (&'a str, &'a str, &'a str) {
(user_color, "none", "0")
}
fn stroke_linecap(&self) -> &str {
"butt"
}
fn stroke_linejoin(&self) -> &str {
"miter"
}
fn child_elements(&self) -> Element {
rsx! {
path {
Expand All @@ -103,6 +127,12 @@ impl IconShape for MdNotificationImportant {
fn fill_and_stroke<'a>(&self, user_color: &'a str) -> (&'a str, &'a str, &'a str) {
(user_color, "none", "0")
}
fn stroke_linecap(&self) -> &str {
"butt"
}
fn stroke_linejoin(&self) -> &str {
"miter"
}
fn child_elements(&self) -> Element {
rsx! {
path {
Expand All @@ -124,6 +154,12 @@ impl IconShape for MdWarning {
fn fill_and_stroke<'a>(&self, user_color: &'a str) -> (&'a str, &'a str, &'a str) {
(user_color, "none", "0")
}
fn stroke_linecap(&self) -> &str {
"butt"
}
fn stroke_linejoin(&self) -> &str {
"miter"
}
fn child_elements(&self) -> Element {
rsx! {
path {
Expand Down
Loading

0 comments on commit 439c5c2

Please sign in to comment.