lbry-desktop/src/renderer/constants/icons.js

47 lines
1.6 KiB
JavaScript
Raw Normal View History

2019-01-22 21:36:28 +01:00
// React Feather icons
// https://github.com/carmelopullara/react-feather
// Note: Icons should be named for their purpose, rather than the actual icon.
// The goal being to reduce multiple uses of the same icon for different purposes.
//
2018-03-26 23:32:43 +02:00
export const FEATURED = 'Award';
export const LOCAL = 'Folder';
export const ALERT = 'AlertCircle';
export const CLIPBOARD = 'Clipboard';
export const ARROW_LEFT = 'ChevronLeft';
export const ARROW_RIGHT = 'ChevronRight';
export const DOWNLOAD = 'Download';
export const UPLOAD = 'UploadCloud';
export const PUBLISHED = 'Cloud';
2018-03-26 23:32:43 +02:00
export const CLOSE = 'X';
export const EDIT = 'Edit3';
2019-01-22 21:36:28 +01:00
export const DELETE = 'Trash';
2018-03-26 23:32:43 +02:00
export const REPORT = 'Flag';
export const HELP = 'HelpCircle';
2019-01-22 21:36:28 +01:00
export const CHAT = 'MessageCircle';
2018-03-26 23:32:43 +02:00
export const SEARCH = 'Search';
2019-01-22 21:36:28 +01:00
export const CHANNEL = 'AtSign';
2018-03-26 23:32:43 +02:00
export const REFRESH = 'RefreshCw';
2019-01-22 21:36:28 +01:00
export const HISTORY = 'Clock';
2018-03-26 23:32:43 +02:00
export const HOME = 'Home';
export const PHONE = 'Phone';
2019-01-22 21:36:28 +01:00
export const COMPLETE = 'Check';
export const COMPLETED = 'CheckCircle';
export const SUBSCRIPTION = 'Heart';
2019-02-07 07:28:37 +01:00
export const UNSUBSCRIBE = 'BrokenHeart';
export const UNLOCK = 'Unlock';
2019-01-22 21:36:28 +01:00
export const WEB = 'Globe';
export const SHARE = 'Share2';
export const EXTERNAL = 'ExternalLink';
export const TIP = 'Gift';
export const VIEW = 'Eye';
2018-06-19 00:16:22 +02:00
export const PLAY = 'Play';
2018-09-12 18:42:15 +02:00
export const FACEBOOK = 'Facebook';
export const TWITTER = 'Twitter';
2019-01-22 21:36:28 +01:00
export const WALLET = 'CreditCard';
2018-10-19 22:38:07 +02:00
export const SETTINGS = 'Settings';
2019-01-22 21:36:28 +01:00
export const INVITE = 'Users';
export const FILE = 'File';
2019-02-18 18:24:56 +01:00
export const OPTIONS = 'Sliders';
export const YES = 'ThumbsUp';
export const NO = 'ThumbsDown';