react-email-builder
Version:
A simple React drag and drop email builder.
9 lines (8 loc) • 320 B
TypeScript
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;