fix(core): update

This commit is contained in:
Philipp Kunz 2020-12-02 17:30:41 +00:00
parent 2f13311098
commit 88554396a4

View File

@ -13,7 +13,7 @@ import {
} from '@fortawesome/free-brands-svg-icons';
import {} from '@fortawesome/free-regular-svg-icons';
import { faDesktop, faRss } from '@fortawesome/free-solid-svg-icons';
import { faDesktop, faRss, faUsers } from '@fortawesome/free-solid-svg-icons';
type TFontAwesomeIcon =
// normal
@ -25,7 +25,8 @@ type TFontAwesomeIcon =
| 'twitter'
| 'linkedin'
| 'medium'
| 'slack';
| 'slack'
| 'users';
const faIcons: { [key: string]: IconDefinition } = {
// normal
desktop: faDesktop,
@ -37,6 +38,7 @@ const faIcons: { [key: string]: IconDefinition } = {
medium: faMedium,
slack: faSlack,
twitter: faTwitter,
users: faUsers,
};
@customElement('dees-icon')