2022-04-16 16:25:55 +02:00
|
|
|
import { ICONS } from "@/constants";
|
2018-11-09 18:08:48 +01:00
|
|
|
|
2022-04-16 16:25:55 +02:00
|
|
|
const getIcon = (name: keyof typeof ICONS) => ICONS[name] || {};
|
2018-11-09 18:08:48 +01:00
|
|
|
|
2020-05-08 18:08:44 +02:00
|
|
|
export default getIcon;
|