file-icons / atom

Atom file-specific icons for improved visual grepping.
MIT License
1.31k stars 250 forks source link

Typescript icon would be great. #132

Closed iangregsondev closed 8 years ago

iangregsondev commented 9 years ago

A typescript icon would be great, anybody have one ?

lazdmx commented 9 years ago

:+1: :+1:

lukephills commented 9 years ago

:+1:

mrmckeb commented 8 years ago

:+1:

mazzy89 commented 8 years ago

And please also a typescript react icon (.tsx file)

arodik commented 8 years ago

Yes, need a .tsx icon

alitaheri commented 8 years ago

I would suggest reusing the .jsx icon. It's pretty enough! Or maybe a pink shade of it. Since .ts icon is a pink shade of the .js icon.

spacejack commented 8 years ago

Would also really like to see this. How about a blue version of the JS icon?

sgal commented 8 years ago

How about using the one that is used in seti-ui package for atom? I like that package, but I would really like to keep icons separated from the atom theme.

JaKXz commented 8 years ago

:+1:

ewgenius commented 8 years ago

I added this in my atom stylesheet (color as for .ts files, icon as for .jsx files)

//...
@import "packages/file-icons/styles/items";
@import "packages/file-icons/styles/colors";
@import "packages/file-icons/styles/icons";
@{pane-tab-selector},
.icon-file-text {
  &[data-name$=".tsx"]:before {
    .react-icon;
    .medium-purple;
  }
}

looks like this _035

lopezjurip commented 8 years ago

Added at #232