alxshelepenok/gatsby-starter-lumen

View on GitHub
src/utils/get-icon.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { ICONS } from "@/constants";

const getIcon = (name: keyof typeof ICONS) => ICONS[name] || {};

export default getIcon;