You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
944 B
39 lines
944 B
export default (type, extraProps) => {
|
|
switch (type) {
|
|
case 'zocial':
|
|
return {};
|
|
case 'octicon':
|
|
return {};
|
|
case 'material':
|
|
return {};
|
|
case 'material-community':
|
|
return {};
|
|
case 'ionicon':
|
|
return {};
|
|
case 'foundation':
|
|
return {};
|
|
case 'evilicon':
|
|
return {};
|
|
case 'entypo':
|
|
return {};
|
|
case 'font-awesome':
|
|
return {};
|
|
case 'font-awesome-5':
|
|
return {
|
|
solid: extraProps.solid || false,
|
|
brand: extraProps.brand || false,
|
|
};
|
|
case 'simple-line-icon':
|
|
return {};
|
|
case 'feather':
|
|
return {};
|
|
case 'antdesign':
|
|
case 'ant-design':
|
|
return {};
|
|
case 'fontisto':
|
|
return {};
|
|
default:
|
|
return {};
|
|
}
|
|
};
|