UNPKG

strapi-plugin-icons-field

Version:

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

7 lines (6 loc) 286 B
import React, { HTMLAttributes } from 'react'; interface RenderSvgProps extends HTMLAttributes<SVGElement> { icon?: string; } export default function Icon({ icon, ...props }: RenderSvgProps): React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | null; export {};