UNPKG

react-email-builder

Version:
9 lines (8 loc) 320 B
import React from 'react'; import type { SvgSymbolName } from '../SvgSymbols/symbols'; export interface Props { name: SvgSymbolName; spinning?: boolean; onClick?: (e: React.MouseEvent<SVGSVGElement, MouseEvent>) => void; } export declare function Icon({ name, spinning, onClick }: Props): React.JSX.Element;