assets/icons/file_icons/cairo.svg 🔗
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
okhai and Danilo Leal created
Discussion: https://github.com/zed-industries/zed/discussions/33270
Release Notes:
- Add file icon for the Cairo programming language.
---------
Co-authored-by: Danilo Leal <daniloleal09@gmail.com>
assets/icons/file_icons/cairo.svg | 1 +
crates/theme/src/icon_theme.rs | 2 ++
2 files changed, 3 insertions(+)
@@ -0,0 +1,3 @@
+<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
@@ -81,6 +81,7 @@ const FILE_SUFFIXES_BY_ICON_KEY: &[(&str, &[&str])] = &[
("bicep", &["bicep"]),
("bun", &["lockb"]),
("c", &["c", "h"]),
+ ("cairo", &["cairo"]),
("code", &["handlebars", "metadata", "rkt", "scm"]),
("coffeescript", &["coffee"]),
(
@@ -279,6 +280,7 @@ const FILE_ICONS: &[(&str, &str)] = &[
("bicep", "icons/file_icons/file.svg"),
("bun", "icons/file_icons/bun.svg"),
("c", "icons/file_icons/c.svg"),
+ ("cairo", "icons/file_icons/cairo.svg"),
("code", "icons/file_icons/code.svg"),
("coffeescript", "icons/file_icons/coffeescript.svg"),
("cpp", "icons/file_icons/cpp.svg"),