-
Notifications
You must be signed in to change notification settings - Fork 2
/
unicons.ts
50 lines (47 loc) · 1.07 KB
/
unicons.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/**
* Declare icons to use in the website here. See https://antonreshetov.github.io/vue-unicons/ for
* list of available icons.
*
* In general, the naming scheme is for some icon `name="some-icon"`, you will need to import and
* add `uniSomeIcon`.
*
* To use in a component:
*
* ```
* <unicon name="github-alt" class="icon-medium"></unicon>
* ```
*
* Styles are available in `util.scss` under `.unicon`.
*/
import Unicon from 'vue-unicons';
import {
uniTimes, // times
uniAppleAlt, // apple-alt
uniGithubAlt, // github-alt
uniAndroidAlt, // android-alt
uniWindow, // window
uniFacebookF, // facebook-f
uniLinkedin, // linkedin-alt
uniInstagram, // instagram
uniAngleDown, // angle-down
uniNotebooks, // notebooks
uniMediumM, // medium-m
uniShareAlt, // share-alt
uniYoutube, // youtube
} from 'vue-unicons/src/icons';
Unicon.add([
uniTimes,
uniAppleAlt,
uniGithubAlt,
uniAndroidAlt,
uniWindow,
uniFacebookF,
uniLinkedin,
uniInstagram,
uniAngleDown,
uniNotebooks,
uniMediumM,
uniShareAlt,
uniYoutube,
]);
export default Unicon;