Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
b171eaf3fc | |||
5585d7e304 |
2385
package-lock.json
generated
2385
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@designestate/dees-catalog",
|
||||
"version": "1.0.22",
|
||||
"version": "1.0.23",
|
||||
"private": false,
|
||||
"description": "website for lossless.com",
|
||||
"main": "dist_ts_web/index.js",
|
||||
|
@ -3,11 +3,14 @@ import { LitElement, html, property, customElement } from 'lit-element';
|
||||
import * as domtools from '@designestate/dees-domtools';
|
||||
|
||||
import { icon, IconDefinition } from "@fortawesome/fontawesome-svg-core";
|
||||
import { faFacebook } from '@fortawesome/free-brands-svg-icons';
|
||||
import { faFacebook, faTwitter, faLinkedin, faMedium } from '@fortawesome/free-brands-svg-icons';
|
||||
|
||||
type TBrand = 'facebook' | 'twitter';
|
||||
type TBrand = 'facebook' | 'twitter' | 'linkedin' | 'medium';
|
||||
const brandIcons: {[key: string]: IconDefinition} = {
|
||||
facebook: faFacebook
|
||||
facebook: faFacebook,
|
||||
twitter: faTwitter,
|
||||
linkedin: faLinkedin,
|
||||
medium: faMedium
|
||||
};
|
||||
|
||||
@customElement('dees-icon')
|
||||
|
Reference in New Issue
Block a user