UNPKG

944 BJavaScriptView Raw
1export default (type, extraProps) => {
2 switch (type) {
3 case 'zocial':
4 return {};
5 case 'octicon':
6 return {};
7 case 'material':
8 return {};
9 case 'material-community':
10 return {};
11 case 'ionicon':
12 return {};
13 case 'foundation':
14 return {};
15 case 'evilicon':
16 return {};
17 case 'entypo':
18 return {};
19 case 'font-awesome':
20 return {};
21 case 'font-awesome-5':
22 return {
23 solid: extraProps.solid || false,
24 brand: extraProps.brand || false,
25 };
26 case 'simple-line-icon':
27 return {};
28 case 'feather':
29 return {};
30 case 'antdesign':
31 case 'ant-design':
32 return {};
33 case 'fontisto':
34 return {};
35 default:
36 return {};
37 }
38};