UNPKG

tiny-isprite

Version:

Lightweight React component for using SVG sprites with Next.js, Vite and Turbopack.

12 lines (9 loc) 264 B
import React from 'react'; interface IconProps { name: string; size?: number; className?: string; external?: boolean; } declare const Icon: ({ name, size, className, external, }: IconProps) => React.JSX.Element; export { Icon, Icon as default };