UNPKG

strapi-plugin-icons-field

Version:

A customizable plugin for Strapi to integrate an icons field into your content types.

12 lines (11 loc) 228 B
import type { Core } from "@strapi/strapi"; type IconType = { name: string; svg: string; }; declare const _default: ({ strapi }: { strapi: Core.Strapi; }) => { getIcons(): IconType[]; }; export default _default;